-
-
Notifications
You must be signed in to change notification settings - Fork 784
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #930 from lepoco/development
Release 3.0.0
- Loading branch information
Showing
235 changed files
with
3,200 additions
and
1,447 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ jobs: | |
- uses: microsoft/[email protected] | ||
with: | ||
msbuild-architecture: x64 | ||
- uses: nuget/setup-nuget@v1 | ||
- uses: nuget/setup-nuget@v2 | ||
with: | ||
nuget-api-key: ${{ secrets.NUGET_API_KEY }} | ||
|
||
|
@@ -24,7 +24,7 @@ jobs: | |
- name: Build the solution | ||
run: msbuild src\Wpf.Ui.Extension\Wpf.Ui.Extension.csproj /t:Rebuild -p:Configuration=Release -p:RestorePackages=false -p:Platform="x64" -p:GITHUB_ACTIONS=True | ||
|
||
- uses: actions/upload-artifact@v3 | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: wpf-ui-vs22-extension | ||
path: src\Wpf.Ui.Extension\bin\x64\Release\Wpf.Ui.Extension.vsix |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ jobs: | |
- uses: microsoft/[email protected] | ||
with: | ||
msbuild-architecture: x64 | ||
- uses: nuget/setup-nuget@v1 | ||
- uses: nuget/setup-nuget@v2 | ||
with: | ||
nuget-api-key: ${{ secrets.NUGET_API_KEY }} | ||
- name: Setup .NET Core SDK 8.x | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ jobs: | |
- uses: microsoft/[email protected] | ||
with: | ||
msbuild-architecture: x64 | ||
- uses: nuget/setup-nuget@v1 | ||
- uses: nuget/setup-nuget@v2 | ||
with: | ||
nuget-api-key: ${{ secrets.NUGET_API_KEY }} | ||
- name: Setup .NET Core SDK 8.x | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
@echo off | ||
powershell -ExecutionPolicy ByPass -NoProfile -command "& """%~dp0scripts\build_demo.ps1"""" | ||
powershell -ExecutionPolicy ByPass -NoProfile -command "& """%~dp0build.ps1"""" | ||
@REM powershell -ExecutionPolicy ByPass -NoProfile -command "& """%~dp0scripts\build_extension.ps1"""" | ||
exit /b %ErrorLevel% | ||
exit /b %ErrorLevel% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
$wingetVersion = & winget --version 2>$null | ||
|
||
if ($wingetVersion -eq $null) { | ||
Write-Output "winget is not installed. Starting installation..." | ||
|
||
Invoke-WebRequest -Uri "https://github.com/microsoft/winget-cli/releases/download/v1.6.3482/Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle" -OutFile "$env:TEMP\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle" | ||
|
||
Add-AppxPackage -Path "$env:TEMP\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle" | ||
|
||
Write-Output "winget has been installed." | ||
} | ||
|
||
$dotnetVersion = & dotnet --version 2>$null | ||
|
||
if ($dotnetVersion -eq $null) { | ||
Write-Output ".NET SDK is not installed." | ||
|
||
winget install Microsoft.DotNet.SDK.8 | ||
} else { | ||
$majorVersion = $dotnetVersion.Split('.')[0] | ||
|
||
if ($majorVersion -ge 8) { | ||
Write-Output ".NET SDK version is $dotnetVersion, which is 8.0.0 or newer." | ||
} else { | ||
Write-Output ".NET SDK version is $dotnetVersion, which is older than 8.0.0." | ||
|
||
winget install Microsoft.DotNet.SDK.8 | ||
} | ||
} | ||
|
||
if ($env:PROCESSOR_ARCHITECTURE -eq "AMD64") { | ||
dotnet restore Wpf.Ui.sln /tl | ||
dotnet build src\Wpf.Ui.Gallery\Wpf.Ui.Gallery.csproj --configuration Release --no-restore --verbosity quiet /tl | ||
} else { | ||
Write-Host "Not in the x64 desktop environment." | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.