-
Notifications
You must be signed in to change notification settings - Fork 10
/
Directory.Build.props
27 lines (25 loc) · 1.17 KB
/
Directory.Build.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<Project>
<PropertyGroup>
<Frameworks>net6.0;net7.0</Frameworks>
<TargetFramework>net6.0</TargetFramework>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<NoWarn>NU1605;NU5118;NU5100;NU5131;NU5104</NoWarn>
<Version>1.0.0-dev</Version>
<Authors>NikolayP;JetBrains</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/JetBrains/teamcity-csharp-interactive</PackageProjectUrl>
<Company>JetBrains</Company>
<Copyright>$(Company) 2022</Copyright>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/JetBrains/teamcity-csharp-interactive</RepositoryUrl>
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
<CompilerGeneratedFilesOutputPath>obj/Generated</CompilerGeneratedFilesOutputPath>
<ImmutypeAPI>False</ImmutypeAPI>
</PropertyGroup>
<ItemGroup>
<CompilerVisibleProperty Include="PureDINamespace" />
<CompilerVisibleProperty Include="ImmutypeAPI" />
</ItemGroup>
</Project>