18 lines
967 B
XML
18 lines
967 B
XML
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<AppendTargetFrameworkToOutputPath>true</AppendTargetFrameworkToOutputPath>
|
|
<LangVersion>latest</LangVersion>
|
|
<AnalysisLevel>latest-recommended</AnalysisLevel>
|
|
<BinDir>$(MSBuildThisFileDirectory)bin</BinDir>
|
|
<RestorePackagesPath>$(MSBuildThisFileDirectory)packages</RestorePackagesPath>
|
|
<OutputDirectory>$(MSBuildProjectName)</OutputDirectory>
|
|
<OutputDirectory Condition=" '$(AssemblyName)' != '' ">$(AssemblyName)</OutputDirectory>
|
|
<OutputPath>$(BinDir)\$(Configuration)\</OutputPath>
|
|
<BaseIntermediateOutputPath>$(BinDir)\obj\$(MSBuildProjectName)\</BaseIntermediateOutputPath>
|
|
<EnableUnsafeBinaryFormatterSerialization>false</EnableUnsafeBinaryFormatterSerialization>
|
|
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
</Project>
|