| 1 | <Project Sdk="Microsoft.NET.Sdk"> |
| 2 | |
| 3 | <PropertyGroup> |
| 4 | <OutputType>Exe</OutputType> |
| 5 | <TargetFramework>net10.0</TargetFramework> |
| 6 | <RuntimeIdentifiers>win-x64</RuntimeIdentifiers> |
| 7 | <RootNamespace>CascadeIDE.BuildVerifyWorker</RootNamespace> |
| 8 | <Nullable>enable</Nullable> |
| 9 | <ImplicitUsings>enable</ImplicitUsings> |
| 10 | </PropertyGroup> |
| 11 | |
| 12 | <ItemGroup> |
| 13 | <ProjectReference Include="..\..\..\dotnet-build-test-core\DotNetBuildTest.Core.csproj" /> |
| 14 | </ItemGroup> |
| 15 | |
| 16 | </Project> |
| 17 |