Skip to content

Commit

Permalink
Revert build options
Browse files Browse the repository at this point in the history
  • Loading branch information
robertcoltheart committed Apr 2, 2023
1 parent 64b5433 commit 8abd7a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

Target("package", DependsOn("build", "test"), () =>
{
Run("dotnet", $"pack --configuration Release --no-restore --no-build --property PackageOutputPath=../../artifacts --property Version={version.SemVer}");
Run("dotnet", $"pack --configuration Release --no-restore --no-build --output artifacts --property Version={version.SemVer}");
});

Target("publish", DependsOn("package"), () =>
Expand Down
2 changes: 1 addition & 1 deletion src/Prefab/templates/prefab/build/build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

Target("package", DependsOn("build", "test"), () =>
{
Run("dotnet", $"pack --configuration Release --no-restore --no-build --property PackageOutputPath=../../artifacts --property Version={version.SemVer}");
Run("dotnet", $"pack --configuration Release --no-restore --no-build --output artifacts --property Version={version.SemVer}");
});

Target("publish", DependsOn("package"), () =>
Expand Down

0 comments on commit 8abd7a2

Please sign in to comment.