Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'master' into feature/add_support_for_emitting_vars_in_w…
…ix_format
  • Loading branch information
ruhullahshah authored Feb 20, 2019
commit 9874d5018f2c0452ad7093fa19a4eadac6bb2ff7
18 changes: 12 additions & 6 deletions src/GitVersionCore/GitVersionCore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,6 @@
<PackageReference Include="YamlDotNet" Version="$(PackageVersion_YamlDotNet)" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="System.Net.Requests" Version="4.3.0" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
<PackageReference Include="System.Reflection.TypeExtensions" Version="4.5.1" />
</ItemGroup>

<ItemGroup>
<Compile Include="AssemblyFileVersioningScheme.cs" />
<Compile Include="AssemblyVersioningScheme.cs" />
Expand Down Expand Up @@ -151,6 +145,18 @@
<Compile Include="BuildServers\TravisCI.cs" />
<Compile Include="WixVersionFileUpdater.cs" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="System.Net.Requests" Version="4.3.0" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
<PackageReference Include="System.Reflection.TypeExtensions" Version="4.5.1" />
</ItemGroup>

<ItemGroup>
<Compile Remove="GitVersionInformationResources\AddFormats\**\*.*" />
<Compile Remove="GitVersionInformationResources\Templates\**\*.*" />
<Compile Remove="VersionAssemblyInfoResources\AddFormats\**\*.*" />
<Compile Remove="VersionAssemblyInfoResources\Templates\**\*.*" />
</ItemGroup>

<ItemGroup>
<EmbeddedResource Include="GitVersionInformationResources\AddFormats\**\*.*" />
Expand Down
2 changes: 0 additions & 2 deletions src/GitVersionExe.Tests/GitVersionExe.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@
<Compile Include="PullRequestInTeamCityTest.cs" />
<Compile Include="UpdateWixVersionFileTests.cs" />
<Compile Include="VersionWriterTests.cs" />
</ItemGroup>
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
<ItemGroup>
Expand Down
4 changes: 3 additions & 1 deletion src/GitVersionExe/HelpWriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ Specify name of AssemblyInfo file. Can also /updateAssemblyInfo GlobalAssemblyIn
All the GitVersion variables are written to 'GitVersion_WixVersion.wxi'.
The variables can then be referenced in other WiX project files for versioning.

# Remote repository args


# Remote repository args
/url Url to remote git repository.
/b Name of the branch to use on the remote repository, must be used in combination with /url.
/u Username in case authentication is required.
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.