Skip to content

Commit 1081959

Browse files
author
Jake Ginnivan
committed
Fixing ref build
1 parent 8b302e1 commit 1081959

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

build.cake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ Task("Upload-AppVeyor-Artifacts")
456456
AppVeyor.UploadArtifact("build/NuGetExeBuild/GitVersion.Portable." + nugetVersion +".nupkg");
457457
AppVeyor.UploadArtifact("build/NuGetCommandLineBuild/GitVersion.CommandLine." + nugetVersion +".nupkg");
458458
AppVeyor.UploadArtifact("build/NuGetExeDotNetCoreBuild/GitVersion.CommandLine.DotNetCore." + nugetVersion +".nupkg");
459-
AppVeyor.UploadArtifact("build/NuGetRefBuild/GitVersionCore." + nugetVersion +".nupkg");
459+
AppVeyor.UploadArtifact("build/NuGetRefBuild/GitVersion." + nugetVersion +".nupkg");
460460
AppVeyor.UploadArtifact("build/NuGetTaskBuild/GitVersionTask." + nugetVersion +".nupkg");
461461
AppVeyor.UploadArtifact("build/GitVersion_" + nugetVersion + ".zip");
462462
AppVeyor.UploadArtifact("build/GitVersionDotNetCore_" + nugetVersion + ".zip");

src/GitVersionCore/GitVersionCore.csproj

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard1.3;net40</TargetFrameworks>
4+
<TargetFrameworks>netstandard1.3;net40</TargetFrameworks>
55
<OutputType>Library</OutputType>
66
<RootNamespace>GitVersion</RootNamespace>
77
<AssemblyName>GitVersionCore</AssemblyName>
88
<BuildDir>$(SolutionDir)..\build\</BuildDir>
99
<!--Start of Nuspec metadata-->
10-
<PackageId>GitVersionCore</PackageId>
10+
<PackageId>GitVersion</PackageId>
1111
<Title>GitVersion</Title>
1212
<Authors>GitTools and Contributors</Authors>
1313
<PackageProjectUrl>https://github.com/GitTools/GitVersion</PackageProjectUrl>
1414
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
1515
<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>
1717
<Copyright>Copyright GitTools 2015.</Copyright>
1818
<PackageLicenseUrl>http://www.opensource.org/licenses/mit-license.php</PackageLicenseUrl>
1919
<PackageIconUrl>https://raw.githubusercontent.com/GitTools/GitVersion/master/docs/img/package_icon.png</PackageIconUrl>
@@ -28,7 +28,7 @@
2828
<GenerateAssemblyVersionAttribute Condition="'$(GenerateAssemblyVersionAttribute)' == ''">false</GenerateAssemblyVersionAttribute>
2929
<GenerateNeutralResourcesLanguageAttribute Condition="'$(GenerateNeutralResourcesLanguageAttribute)' == ''">true</GenerateNeutralResourcesLanguageAttribute>
3030
</PropertyGroup>
31-
31+
3232
<PropertyGroup Condition="'$(TargetFramework)' == 'net40'">
3333
<DefineConstants>TRACE;NET40;NETDESKTOP</DefineConstants>
3434
</PropertyGroup>
@@ -51,12 +51,12 @@
5151
<OutputPath>bin\Release\</OutputPath>
5252
<DefineConstants>TRACE</DefineConstants>
5353
<DocumentationFile>bin\Release\GitVersionCore.xml</DocumentationFile>
54-
</PropertyGroup>
54+
</PropertyGroup>
5555

56-
<ItemGroup>
56+
<ItemGroup>
5757
<PackageReference Include="GitTools.Core" Version="$(PackageVersion_GitToolsCore)" />
5858
<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" />
6060
</ItemGroup>
6161

6262
<ItemGroup Condition="'$(TargetFramework)' == 'net40' ">
@@ -67,13 +67,13 @@
6767
<Reference Include="Microsoft.CSharp" />
6868
<Reference Include="System.Data" />
6969
<Reference Include="System.Xml" />
70-
71-
70+
71+
7272
<PackageReference Include="AsyncBridge" Version="0.1.1">
7373
<PrivateAssets>All</PrivateAssets>
7474
</PackageReference>
7575
</ItemGroup>
76-
76+
7777
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard1.3'">
7878
<PackageReference Include="System.Net.Requests" Version="4.3.0" />
7979
<PackageReference Include="System.Net.Http" Version="4.3.2" />
@@ -82,7 +82,7 @@
8282
<PackageReference Include="System.Runtime.InteropServices.RuntimeInformation" Version="4.3.0" />
8383
<PackageReference Include="System.Reflection.TypeExtensions" Version="4.3.0" />
8484
<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" />
8686
</ItemGroup>
8787

8888
<ItemGroup>
@@ -91,7 +91,7 @@
9191
<Compile Remove="VersionAssemblyInfoResources\AddFormats\**\*.*" />
9292
<Compile Remove="VersionAssemblyInfoResources\Templates\**\*.*" />
9393
</ItemGroup>
94-
94+
9595
<ItemGroup>
9696
<EmbeddedResource Include="GitVersionInformationResources\AddFormats\**\*.*" />
9797
<EmbeddedResource Include="GitVersionInformationResources\Templates\**\*.*" />
@@ -106,4 +106,4 @@
106106
</None>
107107
</ItemGroup>
108108

109-
</Project>
109+
</Project>

0 commit comments

Comments
 (0)