mirror of
https://github.com/PowerShell/PowerShell.git
synced 2026-06-18 13:17:56 -05:00
31 lines
1.0 KiB
XML
31 lines
1.0 KiB
XML
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<Import Project="..\Analyzers.props" />
|
|
|
|
<PropertyGroup>
|
|
<Product>PowerShell Test</Product>
|
|
<Company>Microsoft Corporation</Company>
|
|
<Copyright>(c) Microsoft Corporation.</Copyright>
|
|
|
|
<TargetFramework>net11.0</TargetFramework>
|
|
<LangVersion>preview</LangVersion>
|
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<IsWindows Condition="'$(OS)' == 'Windows_NT'">true</IsWindows>
|
|
<DisableImplicitNamespaceImports>true</DisableImplicitNamespaceImports>
|
|
<DisableImplicitNamespaceImports_DotNet>true</DisableImplicitNamespaceImports_DotNet>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<Features>strict</Features>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(IsWindows)' != 'true' ">
|
|
<DefineConstants>$(DefineConstants);UNIX</DefineConstants>
|
|
</PropertyGroup>
|
|
</Project>
|