forked from dotnet/orleans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
26 lines (21 loc) · 1.08 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>
<_ParentDirectoryBuildPropsPath Condition="'$(_DirectoryBuildPropsFile)' != ''">$([System.IO.Path]::Combine('..', '$(_DirectoryBuildPropsFile)'))</_ParentDirectoryBuildPropsPath>
</PropertyGroup>
<Import Project="$(_ParentDirectoryBuildPropsPath)" Condition="Exists('$(_ParentDirectoryBuildPropsPath)')"/>
<PropertyGroup>
<IsPackable>false</IsPackable>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<NoWarn>$(NoWarn);FS2003;1591</NoWarn>
<ServerGarbageCollection>true</ServerGarbageCollection>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<!-- For test project we still need to target various desktop .Net versions instead of .Net Standard -->
<PropertyGroup>
<TestTargetFrameworks Condition="'$(TestTargetFrameworks)' == ''">net7.0</TestTargetFrameworks>
<MinTestTargetFramework Condition="'$(MinTestTargetFramework)' == ''">net7.0</MinTestTargetFramework>
</PropertyGroup>
<ItemGroup>
<None Include="*.xunit.runner.json" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
</Project>