-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
22 lines (17 loc) · 1.22 KB
/
Copy pathDirectory.Build.props
File metadata and controls
22 lines (17 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project>
<PropertyGroup>
<TargetFrameworks>net48;net6.0-windows;net8.0-windows</TargetFrameworks>
<!-- Put all the generated files into single directories so they can be easily removed to do a clean build -->
<OutDir>$(MSBuildThisFileDirectory)Bin\$(Configuration)_$(Platform)_$(TargetFramework)\$(MSBuildProjectName)\</OutDir>
<!-- See the bottom of https://github.com/Microsoft/msbuild/issues/1603 -->
<!-- Output paths - Old Style -->
<BaseIntermediateOutputPath>$(MSBuildThisFileDirectory)Bin\Base\$(Platform)_$(Configuration)\$(MSBuildProjectName)\</BaseIntermediateOutputPath>
<IntermediateOutputPath>$(MSBuildThisFileDirectory)Bin\Build\$(Platform)_$(Configuration)_$(TargetFramework)\$(MSBuildProjectName)\</IntermediateOutputPath>
<!-- This gets rid of MSB3270 which warns about mixing AnyCPU with x86 or x64 -->
<ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>None</ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>
<Prefer32Bit>false</Prefer32Bit>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)PropertySheets\DynamicDataDisplay.snk</AssemblyOriginatorKeyFile>
<LangVersion>latest</LangVersion>
</PropertyGroup>
</Project>