17 lines
431 B
XML
17 lines
431 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<OutputType>Exe</OutputType>
|
|||
|
<TargetFramework>net8.0</TargetFramework>
|
|||
|
<ImplicitUsings>enable</ImplicitUsings>
|
|||
|
<Nullable>enable</Nullable>
|
|||
|
<PublishAot>true</PublishAot>
|
|||
|
<InvariantGlobalization>true</InvariantGlobalization>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="..\Canon.Core\Canon.Core.csproj" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|