1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFrameworks >netstandard1.3;net40</TargetFrameworks >
4
+ <TargetFrameworks >netstandard1.3;net40</TargetFrameworks >
5
5
<OutputType >Library</OutputType >
6
6
<RootNamespace >GitVersion</RootNamespace >
7
7
<AssemblyName >GitVersionCore</AssemblyName >
8
8
<BuildDir >$(SolutionDir)..\build\</BuildDir >
9
9
<!-- Start of Nuspec metadata-->
10
- <PackageId >GitVersionCore </PackageId >
10
+ <PackageId >GitVersion </PackageId >
11
11
<Title >GitVersion</Title >
12
12
<Authors >GitTools and Contributors</Authors >
13
13
<PackageProjectUrl >https://github.com/GitTools/GitVersion</PackageProjectUrl >
14
14
<PackageRequireLicenseAcceptance >false</PackageRequireLicenseAcceptance >
15
15
<PackageTags >Git;Versioning;GitVersion;GitFlowVersion;GitFlow;GitHubFlow;SemVer</PackageTags >
16
- <Description >Derives SemVer information from a repository following GitFlow or GitHubFlow.</Description >
16
+ <Description >Derives SemVer information from a repository following GitFlow or GitHubFlow. This is the Core library which both GitVersion cli and Task use allowing programatic usage of GitVersion. </Description >
17
17
<Copyright >Copyright GitTools 2015.</Copyright >
18
18
<PackageLicenseUrl >http://www.opensource.org/licenses/mit-license.php</PackageLicenseUrl >
19
19
<PackageIconUrl >https://raw.githubusercontent.com/GitTools/GitVersion/master/docs/img/package_icon.png</PackageIconUrl >
28
28
<GenerateAssemblyVersionAttribute Condition =" '$(GenerateAssemblyVersionAttribute)' == ''" >false</GenerateAssemblyVersionAttribute >
29
29
<GenerateNeutralResourcesLanguageAttribute Condition =" '$(GenerateNeutralResourcesLanguageAttribute)' == ''" >true</GenerateNeutralResourcesLanguageAttribute >
30
30
</PropertyGroup >
31
-
31
+
32
32
<PropertyGroup Condition =" '$(TargetFramework)' == 'net40'" >
33
33
<DefineConstants >TRACE;NET40;NETDESKTOP</DefineConstants >
34
34
</PropertyGroup >
51
51
<OutputPath >bin\Release\</OutputPath >
52
52
<DefineConstants >TRACE</DefineConstants >
53
53
<DocumentationFile >bin\Release\GitVersionCore.xml</DocumentationFile >
54
- </PropertyGroup >
54
+ </PropertyGroup >
55
55
56
- <ItemGroup >
56
+ <ItemGroup >
57
57
<PackageReference Include =" GitTools.Core" Version =" $(PackageVersion_GitToolsCore)" />
58
58
<PackageReference Include =" YamlDotNet" Version =" $(PackageVersion_YamlDotNet)" />
59
- <PackageReference Include =" LibGit2Sharp.NativeBinaries" Version =" $(PackageVersion_LibGit2SharpNativeBinaries)" PrivateAssets =" contentFiles" />
59
+ <PackageReference Include =" LibGit2Sharp.NativeBinaries" Version =" $(PackageVersion_LibGit2SharpNativeBinaries)" PrivateAssets =" contentFiles" />
60
60
</ItemGroup >
61
61
62
62
<ItemGroup Condition =" '$(TargetFramework)' == 'net40' " >
67
67
<Reference Include =" Microsoft.CSharp" />
68
68
<Reference Include =" System.Data" />
69
69
<Reference Include =" System.Xml" />
70
-
71
-
70
+
71
+
72
72
<PackageReference Include =" AsyncBridge" Version =" 0.1.1" >
73
73
<PrivateAssets >All</PrivateAssets >
74
74
</PackageReference >
75
75
</ItemGroup >
76
-
76
+
77
77
<ItemGroup Condition =" '$(TargetFramework)' == 'netstandard1.3'" >
78
78
<PackageReference Include =" System.Net.Requests" Version =" 4.3.0" />
79
79
<PackageReference Include =" System.Net.Http" Version =" 4.3.2" />
82
82
<PackageReference Include =" System.Runtime.InteropServices.RuntimeInformation" Version =" 4.3.0" />
83
83
<PackageReference Include =" System.Reflection.TypeExtensions" Version =" 4.3.0" />
84
84
<PackageReference Include =" System.Text.Encoding.Extensions" Version =" 4.3.0" />
85
- <PackageReference Include =" System.Threading" Version =" 4.3.0" />
85
+ <PackageReference Include =" System.Threading" Version =" 4.3.0" />
86
86
</ItemGroup >
87
87
88
88
<ItemGroup >
91
91
<Compile Remove =" VersionAssemblyInfoResources\AddFormats\**\*.*" />
92
92
<Compile Remove =" VersionAssemblyInfoResources\Templates\**\*.*" />
93
93
</ItemGroup >
94
-
94
+
95
95
<ItemGroup >
96
96
<EmbeddedResource Include =" GitVersionInformationResources\AddFormats\**\*.*" />
97
97
<EmbeddedResource Include =" GitVersionInformationResources\Templates\**\*.*" />
106
106
</None >
107
107
</ItemGroup >
108
108
109
- </Project >
109
+ </Project >
0 commit comments