..setup for new agent task
This commit is contained in:
@@ -0,0 +1,14 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<OutputType>Exe</OutputType>
|
||||||
|
<TargetFramework>net10.0</TargetFramework>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\Model\Model.csproj" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
Console.WriteLine("Hello, World!");
|
||||||
@@ -2,6 +2,10 @@
|
|||||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Web", "Web\Web.csproj", "{091C250E-B2B3-40BB-B2FF-E48B2F3BAA8E}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Web", "Web\Web.csproj", "{091C250E-B2B3-40BB-B2FF-E48B2F3BAA8E}"
|
||||||
EndProject
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Build", "Build\Build.csproj", "{42C8E552-1E96-4A6E-9433-576B073CE7B6}"
|
||||||
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Model", "Model\Model.csproj", "{12D2D5AE-D402-45D1-AE39-928964CADD56}"
|
||||||
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Any CPU = Debug|Any CPU
|
Debug|Any CPU = Debug|Any CPU
|
||||||
@@ -12,5 +16,13 @@ Global
|
|||||||
{091C250E-B2B3-40BB-B2FF-E48B2F3BAA8E}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{091C250E-B2B3-40BB-B2FF-E48B2F3BAA8E}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{091C250E-B2B3-40BB-B2FF-E48B2F3BAA8E}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{091C250E-B2B3-40BB-B2FF-E48B2F3BAA8E}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{091C250E-B2B3-40BB-B2FF-E48B2F3BAA8E}.Release|Any CPU.Build.0 = Release|Any CPU
|
{091C250E-B2B3-40BB-B2FF-E48B2F3BAA8E}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{42C8E552-1E96-4A6E-9433-576B073CE7B6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{42C8E552-1E96-4A6E-9433-576B073CE7B6}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{42C8E552-1E96-4A6E-9433-576B073CE7B6}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{42C8E552-1E96-4A6E-9433-576B073CE7B6}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{12D2D5AE-D402-45D1-AE39-928964CADD56}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{12D2D5AE-D402-45D1-AE39-928964CADD56}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{12D2D5AE-D402-45D1-AE39-928964CADD56}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{12D2D5AE-D402-45D1-AE39-928964CADD56}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
EndGlobal
|
EndGlobal
|
||||||
|
|||||||
@@ -0,0 +1,5 @@
|
|||||||
|
namespace Model;
|
||||||
|
|
||||||
|
public class Class1
|
||||||
|
{
|
||||||
|
}
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>net10.0</TargetFramework>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
</Project>
|
||||||
@@ -12,4 +12,8 @@
|
|||||||
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="10.0.8" PrivateAssets="all"/>
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="10.0.8" PrivateAssets="all"/>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\Model\Model.csproj" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
+8
-77
@@ -4,43 +4,11 @@
|
|||||||
"type": "split",
|
"type": "split",
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"id": "a6d68f6d6a50ba09",
|
"id": "09d7b7dcffcb1b49",
|
||||||
"type": "tabs",
|
"type": "tabs",
|
||||||
"dimension": 80.32994923857868,
|
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"id": "4ae458cb7f768cb9",
|
"id": "cf07e32fae8559d4",
|
||||||
"type": "leaf",
|
|
||||||
"state": {
|
|
||||||
"type": "canvas",
|
|
||||||
"state": {
|
|
||||||
"file": "_Keyboard.canvas",
|
|
||||||
"viewState": {
|
|
||||||
"x": 1188.5882847634182,
|
|
||||||
"y": 1015.5547971965063,
|
|
||||||
"zoom": -1.2720080268176461
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"icon": "lucide-layout-dashboard",
|
|
||||||
"title": "_Keyboard"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "16bac99d148a0e4b",
|
|
||||||
"type": "leaf",
|
|
||||||
"state": {
|
|
||||||
"type": "markdown",
|
|
||||||
"state": {
|
|
||||||
"file": "Xavian/Aura of Solace.md",
|
|
||||||
"mode": "source",
|
|
||||||
"source": false
|
|
||||||
},
|
|
||||||
"icon": "lucide-file",
|
|
||||||
"title": "Aura of Solace"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "28bf3864eae8c9e4",
|
|
||||||
"type": "leaf",
|
"type": "leaf",
|
||||||
"state": {
|
"state": {
|
||||||
"type": "markdown",
|
"type": "markdown",
|
||||||
@@ -52,43 +20,6 @@
|
|||||||
"icon": "lucide-file",
|
"icon": "lucide-file",
|
||||||
"title": "Omnistrike"
|
"title": "Omnistrike"
|
||||||
}
|
}
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "90f63ab1cd502da2",
|
|
||||||
"type": "leaf",
|
|
||||||
"pinned": true,
|
|
||||||
"state": {
|
|
||||||
"type": "bases",
|
|
||||||
"state": {
|
|
||||||
"file": "Xavian/_Base.base",
|
|
||||||
"viewName": "Table"
|
|
||||||
},
|
|
||||||
"pinned": true,
|
|
||||||
"icon": "lucide-table",
|
|
||||||
"title": "_Base"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"currentTab": 3
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "09d7b7dcffcb1b49",
|
|
||||||
"type": "tabs",
|
|
||||||
"dimension": 19.670050761421322,
|
|
||||||
"children": [
|
|
||||||
{
|
|
||||||
"id": "cf07e32fae8559d4",
|
|
||||||
"type": "leaf",
|
|
||||||
"state": {
|
|
||||||
"type": "markdown",
|
|
||||||
"state": {
|
|
||||||
"file": "Xavian/Sky Crash.md",
|
|
||||||
"mode": "source",
|
|
||||||
"source": false
|
|
||||||
},
|
|
||||||
"icon": "lucide-file",
|
|
||||||
"title": "Sky Crash"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -237,8 +168,8 @@
|
|||||||
"state": {
|
"state": {
|
||||||
"type": "calendar",
|
"type": "calendar",
|
||||||
"state": {},
|
"state": {},
|
||||||
"icon": "calendar-with-checkmark",
|
"icon": "lucide-ghost",
|
||||||
"title": "Calendar"
|
"title": "calendar"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -261,14 +192,17 @@
|
|||||||
},
|
},
|
||||||
"active": "cf07e32fae8559d4",
|
"active": "cf07e32fae8559d4",
|
||||||
"lastOpenFiles": [
|
"lastOpenFiles": [
|
||||||
|
"Vigour/Avatar of Light.md",
|
||||||
"Xavian/_Base.base",
|
"Xavian/_Base.base",
|
||||||
|
"Vigour/Avatar of Light Icon.png",
|
||||||
|
"Spells - 6. E - Greater Heal.md",
|
||||||
|
"Xavian/Sky Crash.md",
|
||||||
"Xavian/Solar Shield.md",
|
"Xavian/Solar Shield.md",
|
||||||
"Xavian/Omega Reprieval.md",
|
"Xavian/Omega Reprieval.md",
|
||||||
"Xavian/_Keyboard 2.canvas",
|
"Xavian/_Keyboard 2.canvas",
|
||||||
"Xavian/Taunt.md",
|
"Xavian/Taunt.md",
|
||||||
"Xavian/Sun Struck.md",
|
"Xavian/Sun Struck.md",
|
||||||
"Xavian/Xavian.md",
|
"Xavian/Xavian.md",
|
||||||
"Xavian/Sky Crash.md",
|
|
||||||
"Xavian/Brilliant Flare.md",
|
"Xavian/Brilliant Flare.md",
|
||||||
"Xavian/Brilliant Flash.md",
|
"Xavian/Brilliant Flash.md",
|
||||||
"Xavian/Swift Reprival.md",
|
"Xavian/Swift Reprival.md",
|
||||||
@@ -288,17 +222,14 @@
|
|||||||
"Shift.md",
|
"Shift.md",
|
||||||
"Images/Pasted image 20260223234556.png",
|
"Images/Pasted image 20260223234556.png",
|
||||||
"Hotkeys.md",
|
"Hotkeys.md",
|
||||||
"R.md",
|
|
||||||
"Images/Pasted image 20260224121329.png",
|
"Images/Pasted image 20260224121329.png",
|
||||||
"Images/Pasted image 20260605113647.png",
|
"Images/Pasted image 20260605113647.png",
|
||||||
"Images/Pasted image 20260605112156.png",
|
"Images/Pasted image 20260605112156.png",
|
||||||
"Frost Bolt Icon.png",
|
"Frost Bolt Icon.png",
|
||||||
"Keys/Mouse 1.md",
|
|
||||||
"Keys",
|
"Keys",
|
||||||
"Images/Pasted image 20260605125121.png",
|
"Images/Pasted image 20260605125121.png",
|
||||||
"Images/Pasted image 20260605125057.png",
|
"Images/Pasted image 20260605125057.png",
|
||||||
"Images/Pasted image 20260605124858.png",
|
"Images/Pasted image 20260605124858.png",
|
||||||
"Images/Pasted image 20260605123320.png",
|
|
||||||
"_.base",
|
"_.base",
|
||||||
"_.canvas",
|
"_.canvas",
|
||||||
"_Keyboard.canvas",
|
"_Keyboard.canvas",
|
||||||
|
|||||||
Reference in New Issue
Block a user