-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCommon.props
42 lines (31 loc) · 1.84 KB
/
Common.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
<Project>
<PropertyGroup>
<NetStandardImplicitPackageVersion>2.0.1</NetStandardImplicitPackageVersion>
<TargetFramework>netstandard2.0</TargetFramework>
<!--<PackageTargetFallback>$(PackageTargetFallback);dnxcore50;portable-win+net45+wp8+win81+wpa8;net45;net46;net461;portable-net45+win8+wpa81+wp8</PackageTargetFallback>-->
<Authors>b1thunt3r</Authors>
<Copyright>Copyright © 2016-2017 Nullbit Solutions</Copyright>
<PackageProjectUrl>https://github.com/b1thunt3r/Bit0.Utils</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/b1thunt3r/Bit0.Utils/blob/master/LICENSE.md</PackageLicenseUrl>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<DebugType>Full</DebugType>
<AssemblyVersion>$(Version)</AssemblyVersion>
<FileVersion>$(Version)</FileVersion>
<Product Condition="'$(Product)'==''">$(RootNamespace)</Product>
<AssemblyName>$(Product)</AssemblyName>
<PackageId>$(Product)</PackageId>
<AssemblyTitle>$(Product)</AssemblyTitle>
<AssemblyTitle Condition="'$(AssemblyTitle)'==''">$(RootNamespace)</AssemblyTitle>
<ProductName>$(AssemblyTitle)</ProductName>
<AssemblyTitle>$(AssemblyTitle) for .net core</AssemblyTitle>
<Description>$(AssemblyTitle)</Description>
</PropertyGroup>
<!--<Import Project="$(ProjectDir)\Version.props" Condition="exists('$(ProjectDir)\Version.props')"/>-->
<!--Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="$(SolutionDir)\nuget.bat $(ProjectDir) $(Configuration)" />
</Target-->
</Project>