We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5491a41 commit 3ce8026Copy full SHA for 3ce8026
.github/workflows/release.yml
@@ -26,7 +26,7 @@ jobs:
26
$ts = Get-Date -Format yyyyMMddHHmmss
27
$date = Get-Date -Format "yyyy.MMdd.HHmm"
28
$buildNumber=(Get-Date).ToString("ss")
29
- $env:VERSION=$date.$buildNumber
+ $env:VERSION="$date.$buildNumber"
30
echo "version is $env:VERSION"
31
dotnet build memory/Memory.csproj -c Release -r win-x86 --self-contained false -p:AssemblyVersion="$env:VERSION" -p:Version="$env:VERSION" -p:NuGetVersion="$env:VERSION" --output ./build/x86
32
dotnet pack memory/Memory.csproj -c Release -p:PackageId=Memory-x86 -p:Version="$env:VERSION" -p:RuntimeIdentifier=win-x86 -p:NoBuild=true -p:OutputPath="$PWD/build/x86" --output ./nupkg/x86
0 commit comments