2024-06-04 08:01:11 -07:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2024-11-19 11:00:48 -08:00
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2024-06-04 08:01:11 -07:00
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<PublishAot>true</PublishAot>
|
|
|
|
|
<InvariantGlobalization>true</InvariantGlobalization>
|
|
|
|
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
|
|
|
|
<SelfContained>true</SelfContained>
|
|
|
|
|
<IsAotCompatible>true</IsAotCompatible>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<TrimmerRootAssembly Include="AutoGen.Core" />
|
|
|
|
|
<TrimmerRootAssembly Update="@(TrimmerRootAssembly)" Path="$(RepoRoot)\src\%(Identity)\%(Identity).csproj" />
|
|
|
|
|
<ProjectReference Include="@(TrimmerRootAssembly->'%(Path)')" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|