Skip to content
This repository has been archived by the owner on Aug 28, 2021. It is now read-only.

Commit

Permalink
FML
Browse files Browse the repository at this point in the history
  • Loading branch information
didimitrie committed Dec 3, 2019
1 parent 4a15a86 commit e82f4a5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions SpeckleCore/SpeckleCore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
<Version>1.0.0.0</Version>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<InformationalVersion>1.0.0.0</InformationalVersion>
<FileVersion>1.0.0.0</FileVersion>
<PackageVersion>1.0.0.0</PackageVersion>
</PropertyGroup>
Expand Down
10 changes: 5 additions & 5 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ init:
$major = $arr[0]
$minor = $arr[1]
$build = $arr[2]
Update-AppveyorBuild -Version "$major.$minor.$build.$Env:APPVEYOR_BUILD_VERSION"
Update-AppveyorBuild -Version "$major.$minor.$build.$Env:APPVEYOR_BUILD_VERSION-wip"
$env:CLEANTAG=$spl
}
Write-Host "Hello. Build version is: $Env:APPVEYOR_BUILD_VERSION; Clean Tag: $Env:CLEANTAG"
Expand All @@ -34,10 +34,10 @@ before_build:
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '${CLEANTAG}'
assembly_version: '${CLEANTAG}'
file_version: '${CLEANTAG}'
informational_version: '${CLEANTAG}'
version: $(CLEANTAG)
assembly_version: $(CLEANTAG)
file_version: $(CLEANTAG)
informational_version: $(CLEANTAG)
package_version: '{version}'


Expand Down

0 comments on commit e82f4a5

Please sign in to comment.