forked from EDCD/EDDI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
36 lines (25 loc) · 1.25 KB
/
Copy pathDirectory.Build.props
File metadata and controls
36 lines (25 loc) · 1.25 KB
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
27
28
29
30
31
32
33
34
35
36
<Project>
<PropertyGroup>
<!-- Targeting and Output -->
<SupportedOSPlatformVersion>7.0</SupportedOSPlatformVersion>
<!-- Auto-generate AssemblyInfo.cs -->
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<!-- Normalize embedded stacktrace paths, make them relative rather than absolute -->
<PathMap>$(MSBuildProjectDirectory)=$(MSBuildProjectName)</PathMap>
<!-- Don't append the target framework or a runtime identifier to the output path -->
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<!-- Always include embedded debug symbols in our Release builds -->
<DebugType>embedded</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<!-- Set up localization to fallback to the main assembly and en neutral language -->
<ItemGroup>
<AssemblyAttribute Include="System.Resources.NeutralResourcesLanguageAttribute">
<_Parameter1>en</_Parameter1>
<_Parameter2>MainAssembly</_Parameter2>
</AssemblyAttribute>
</ItemGroup>
</Project>