This commit is contained in:
James Jackson-South 2021-08-02 23:23:57 +10:00
Родитель 006bde5a41
Коммит d4d258cbc5
2 изменённых файлов: 3 добавлений и 6 удалений

Просмотреть файл

@ -1,11 +1,6 @@
param(
[Parameter(Mandatory = $true, Position = 0)]
[string]$targetFramework
)
dotnet clean -c Release
$repositoryUrl = "https://github.com/$env:GITHUB_REPOSITORY"
# Building for a specific framework.
dotnet build -c Release -f $targetFramework /p:RepositoryUrl=$repositoryUrl
dotnet build -c Release /p:RepositoryUrl=$repositoryUrl

Просмотреть файл

@ -1,3 +1,5 @@
dotnet clean -c Release
$repositoryUrl = "https://github.com/$env:GITHUB_REPOSITORY"
# Building for packing and publishing.