mirror of
https://github.com/VSadov/Satori.git
synced 2025-06-11 02:13:38 +09:00
29 lines
1.1 KiB
XML
29 lines
1.1 KiB
XML
<Project>
|
|
|
|
<PropertyGroup>
|
|
<!--
|
|
For non-SDK projects that import this file and then import Microsoft.Common.targets,
|
|
tell Microsoft.Common.targets not to import Directory.Build.targets again
|
|
-->
|
|
<ImportDirectoryBuildTargets>false</ImportDirectoryBuildTargets>
|
|
</PropertyGroup>
|
|
|
|
<Import Project="$(RepositoryEngineeringDir)liveBuilds.targets" />
|
|
<Import Project="$(RepositoryEngineeringDir)python.targets" />
|
|
<Import Project="Sdk.targets" Sdk="Microsoft.DotNet.Arcade.Sdk" Condition="'$(SkipImportArcadeSdkFromRoot)' != 'true'" />
|
|
|
|
<PropertyGroup>
|
|
<!--
|
|
Define this here (not just in Versions.props) because the SDK resets it
|
|
unconditionally in Microsoft.NETCoreSdk.BundledVersions.props.
|
|
-->
|
|
<NETCoreAppMaximumVersion>$(MajorVersion).$(MinorVersion)</NETCoreAppMaximumVersion>
|
|
</PropertyGroup>
|
|
|
|
<!-- Language configuration -->
|
|
<PropertyGroup>
|
|
<!-- default to allowing all language features -->
|
|
<LangVersion>preview</LangVersion>
|
|
<LangVersion Condition="'$(Language)' == 'VB'">latest</LangVersion>
|
|
</PropertyGroup>
|
|
</Project>
|