Skip to content

Commit def314c

Browse files
committed
Update for 1.4.0 release
1 parent d9519aa commit def314c

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed

Build.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Write-Host "Building LzString..." -ForegroundColor Green
66
# ==================================== Setup
77

88
Install-Module VSSetup -Scope CurrentUser
9-
$MSBuildExe = "$((Get-VSSetupInstance).InstallationPath)\MSBuild\15.0\Bin\MSBuild.exe"
9+
$MSBuildExe = "$((Get-VSSetupInstance).InstallationPath)\MSBuild\Current\Bin\MSBuild.exe"
1010
If(-not (Test-Path $MSBuildExe)) {
1111
Throw "Could not find MSBuild 15.0"
1212
}

src/LZStringCSharp.csproj

+13-4
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,26 @@
55
<Description>LZ String C# Compression Library</Description>
66
<RepositoryUrl>https://github.com/jawa-the-hutt/lz-string-csharp</RepositoryUrl>
77
<PackageProjectUrl>https://github.com/jawa-the-hutt/lz-string-csharp</PackageProjectUrl>
8-
<PackageLicenseUrl>https://github.com/jawa-the-hutt/lz-string-csharp/blob/master/LICENSE</PackageLicenseUrl>
8+
<PackageLicenseUrl></PackageLicenseUrl>
99
<RepositoryType>git</RepositoryType>
1010
<PackageTags>lz-string, compression</PackageTags>
11-
<AssemblyVersion>1.3.0.0</AssemblyVersion>
12-
<FileVersion>1.3.0.0</FileVersion>
11+
<AssemblyVersion>1.4.0.0</AssemblyVersion>
12+
<FileVersion>1.4.0.0</FileVersion>
1313
<Company />
1414
<Copyright>Copyright jawa-the-hutt © 2017</Copyright>
1515
<Product>LZStringCSharp</Product>
1616
<Authors>jawa-the-hutt, christianrondeau</Authors>
17-
<Version>1.3.0</Version>
17+
<Version>1.4.0</Version>
1818
<PackageId>LZStringCSharp</PackageId>
19+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
20+
<PackageLicenseFile>LICENSE</PackageLicenseFile>
1921
</PropertyGroup>
2022

23+
<ItemGroup>
24+
<None Include="..\LICENSE">
25+
<Pack>True</Pack>
26+
<PackagePath></PackagePath>
27+
</None>
28+
</ItemGroup>
29+
2130
</Project>

0 commit comments

Comments
 (0)