Skip to content

Commit

Permalink
sdk package script for testing only - remove script before merge
Browse files Browse the repository at this point in the history
  • Loading branch information
liliankasem committed Nov 1, 2022
1 parent a3bc5ff commit 7817039
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions pack-sdk.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# FOR TESTING - WILL DELETE

$packageSuffix = "dev" + [datetime]::UtcNow.Ticks.ToString()
$outputDirectory = "../../buildoutput"
$project = "sdk/Sdk/Sdk.csproj"

dotnet --version

dotnet build

$cmd = "pack", "$project", "-o", $outputDirectory, "--no-build", "--version-suffix", "-$packageSuffix"

& dotnet $cmd

0 comments on commit 7817039

Please sign in to comment.