-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIntegrations.props
20 lines (17 loc) · 1023 Bytes
/
Integrations.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Project>
<PropertyGroup>
<!-- only run .NET Framework tests on Windows -->
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
<TargetFrameworks Condition="'$(OS)' == 'Windows_NT'">$(TargetFrameworks);net462</TargetFrameworks>
<OutputType>Exe</OutputType>
<Platforms>x64;x86</Platforms>
<PlatformTarget>$(Platform)</PlatformTarget>
<LangVersion>13.0</LangVersion>
<BaseIntermediateOutputPath Condition="'$(LibraryVersion)'!=''">..\obj\$(MSBuildProjectName)\$(LibraryVersion)\</BaseIntermediateOutputPath>
<BaseIntermediateOutputPath Condition="'$(LibraryVersion)'==''">..\obj\$(MSBuildProjectName)\</BaseIntermediateOutputPath>
<BaseOutputPath Condition="'$(LibraryVersion)'!=''">..\bin\$(MSBuildProjectName)\$(LibraryVersion)\</BaseOutputPath>
<BaseOutputPath Condition="'$(LibraryVersion)'==''">..\bin\$(MSBuildProjectName)\</BaseOutputPath>
<IsPackable>false</IsPackable>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
</PropertyGroup>
</Project>