Skip to content

Commit cb5a25e

Browse files
author
Justin
committed
4.0.1 release.
1 parent 62fe584 commit cb5a25e

2 files changed

Lines changed: 8 additions & 3 deletions

File tree

default.ps1

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,10 @@ task compile -depends clean {
3131

3232
exec { dotnet restore $projectPath }
3333
exec { dotnet build $projectPath -c $config }
34-
exec { dotnet pack $projectPath -c $config -o $artifactsDir --version-suffix $version }
34+
if ($env:APPVEYOR_REPO_TAG) {
35+
exec { dotnet pack $projectPath -c $config -o $artifactsDir }
36+
}
37+
else {
38+
exec { dotnet pack $projectPath -c $config -o $artifactsDir --version-suffix $version }
39+
}
3540
}

src/SteamWebAPI2/SteamWebAPI2.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<Description>This is a .NET library that makes it easy to use the Steam Web API. It conveniently wraps around all of the JSON data and ugly API details with clean methods, structures and classes.</Description>
5-
<VersionPrefix>4.0.1-ci</VersionPrefix>
5+
<VersionPrefix>4.0.1</VersionPrefix>
66
<Authors>Justin Skiles</Authors>
77
<TargetFrameworks>netstandard1.3;net45</TargetFrameworks>
88
<AssemblyName>SteamWebAPI2</AssemblyName>
@@ -17,7 +17,7 @@
1717
<ItemGroup>
1818
<PackageReference Include="AutoMapper" Version="5.2.0" />
1919
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" />
20-
<PackageReference Include="Steam.Models" Version="3.0.1-ci-00030" />
20+
<PackageReference Include="Steam.Models" Version="3.0.2" />
2121
</ItemGroup>
2222

2323
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' ">

0 commit comments

Comments
 (0)