-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
39 lines (34 loc) · 1.74 KB
/
Directory.Build.props
File metadata and controls
39 lines (34 loc) · 1.74 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
37
38
39
<Project>
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net452</TargetFrameworks>
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>embedded</DebugType>
<DebugSymbols>true</DebugSymbols>
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
<TreatSpecificWarningsAsErrors />
<RestoreProjectStyle>PackageReference</RestoreProjectStyle>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute>
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>
<GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
</PropertyGroup>
<PropertyGroup>
<Copyright>Copyright 2015-2018 Divverence B.V.</Copyright>
<Authors>Divverence B.V.</Authors>
<PackageIconUrl>http://www.divverence.com/divverencelogo.png</PackageIconUrl>
</PropertyGroup>
<!-- PACKAGE AND VERSION CREATION -->
<Import Project="built\*.Build.props" />
<ItemGroup>
<Compile Include="..\..\built\SharedAssemblyInfo*.cs" Link="SharedAssemblyInfo.cs" />
</ItemGroup>
<!-- Divv.Gear.Configuration -->
<ItemGroup>
<ConfigurationFiles Include="etc\**\*.properties" />
</ItemGroup>
<Target Name="MyAfterBuild" AfterTargets="Build">
<Copy SourceFiles="@(ConfigurationFiles)" DestinationFiles="@(ConfigurationFiles->'$(ProjectDir)$(Configuration)\etc\%(RecursiveDir)%(Filename)%(Extension)')" SkipUnchangedFiles="true" UseHardlinksIfPossible="true" />
</Target>
</Project>