18 lines
522 B
XML
18 lines
522 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
||
|
<ItemGroup>
|
||
|
<ProjectReference Include="..\..\MoonWorks\MoonWorks.csproj" />
|
||
|
<ProjectReference Include="..\MoonWorks.Test.Common\MoonWorks.Test.Common.csproj" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<OutputType>Exe</OutputType>
|
||
|
<TargetFramework>net7.0</TargetFramework>
|
||
|
<Nullable>enable</Nullable>
|
||
|
<Platforms>x64</Platforms>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<Import Project="$(SolutionDir)NativeAOT_Console.targets" Condition="Exists('$(SolutionDir)NativeAOT_Console.targets')" />
|
||
|
|
||
|
</Project>
|