-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathSharedAssemblyInfo.props
48 lines (43 loc) · 2.64 KB
/
SharedAssemblyInfo.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<Project>
<PropertyGroup>
<!-- Nuget properties -->
<AssemblyVersion>1.0.4</AssemblyVersion>
<FileVersion>1.0.4</FileVersion>
<VersionPrefix>1.0.4</VersionPrefix>
<Authors>Vuk Jovanovic</Authors>
<Copyright>Copyright (C) Vuk Jovanovic 2015-2019</Copyright>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageProjectUrl>https://github.com/southpolenator/SharpPdb</PackageProjectUrl>
<!--<PackageIconUrl>https://nuget.org/Content/Images/packageDefaultIcon-50x50.png</PackageIconUrl>-->
<RepositoryUrl>https://github.com/southpolenator/SharpPdb.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<!-- Common properties for all projects -->
<EnlistmentRoot>$(MSBuildThisFileDirectory)</EnlistmentRoot>
<OutputPath>$(EnlistmentRoot)\bin\$(Configuration)\</OutputPath>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<!-- Enable embedding pdb -->
<DebugSymbols>true</DebugSymbols>
<DebugType>embedded</DebugType>
<DebugType Condition="'$(UsingAppVeyor)' == 'True'">Full</DebugType>
<!-- Singing assemblies -->
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>$(EnlistmentRoot)\Key.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<!-- Nuget license file -->
<ItemGroup>
<None Include="$(EnlistmentRoot)LICENSE" Pack="true" PackagePath=""/>
</ItemGroup>
<!-- Solving problem with non-Windows builds or not installed .net framework -->
<ItemGroup Condition="'$(TargetFramework)' == 'net45' AND '$(MSBuildRuntimeType)' == 'Core' AND '$(OS)' != 'Windows_NT'">
<PackageReference Include="Microsoft.TargetingPack.NETFramework.v4.5" Version="1.0.1" ExcludeAssets="All" PrivateAssets="All" GeneratePathProperty="true" />
</ItemGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'net45' AND '$(MSBuildRuntimeType)' == 'Core' AND '$(OS)' != 'Windows_NT' AND '$(NuGetPackageRoot)' != ''">
<FrameworkPathOverride>$(NuGetPackageRoot)microsoft.targetingpack.netframework.v4.5\1.0.1\lib\net45\</FrameworkPathOverride>
</PropertyGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net461' AND '$(MSBuildRuntimeType)' == 'Core' AND '$(OS)' != 'Windows_NT'">
<PackageReference Include="Microsoft.TargetingPack.NETFramework.v4.6.1" Version="1.0.1" ExcludeAssets="All" PrivateAssets="All" GeneratePathProperty="true" />
</ItemGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'net461' AND '$(MSBuildRuntimeType)' == 'Core' AND '$(OS)' != 'Windows_NT' AND '$(NuGetPackageRoot)' != ''">
<FrameworkPathOverride>$(NuGetPackageRoot)microsoft.targetingpack.netframework.v4.6.1\1.0.1\lib\net461\</FrameworkPathOverride>
</PropertyGroup>
</Project>