..setup for new agent task

This commit is contained in:
2026-06-17 21:44:08 -04:00
parent 2fcf2daf8b
commit 36bd610ca4
7 changed files with 53 additions and 77 deletions
+14
View File
@@ -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>
+1
View File
@@ -0,0 +1 @@
Console.WriteLine("Hello, World!");
+12
View File
@@ -2,6 +2,10 @@
Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Web", "Web\Web.csproj", "{091C250E-B2B3-40BB-B2FF-E48B2F3BAA8E}"
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
GlobalSection(SolutionConfigurationPlatforms) = preSolution
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}.Release|Any CPU.ActiveCfg = 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
EndGlobal
+5
View File
@@ -0,0 +1,5 @@
namespace Model;
public class Class1
{
}
+9
View File
@@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
+4
View File
@@ -12,4 +12,8 @@
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="10.0.8" PrivateAssets="all"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Model\Model.csproj" />
</ItemGroup>
</Project>