Open
Description
opened on Mar 7, 2024
Notice the inconsistent use of "enable" and to some degree "true".
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>hello_dotnet</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<InvariantGlobalization>true</InvariantGlobalization>
<!-- Publishing properties -->
<EnableSdkContainerSupport>true</EnableSdkContainerSupport>
<PublishAot>true</PublishAot>
<ContainerFamily>jammy-chiseled</ContainerFamily>
<ContainerRepository>hello-chiseled-aot</ContainerRepository>
</PropertyGroup>
</Project>
Activity