Improve resource name consistency #51
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
name: CI | |
on: | |
push: | |
branches: | |
- main | |
- release/* | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Clone Code | |
uses: actions/checkout@v3 | |
with: | |
submodules: false | |
fetch-depth: 0 | |
- name: Setup Visual Studio Command Prompt | |
uses: microsoft/[email protected] | |
- name: Build WPF | |
run: | | |
msbuild /restore /t:Build src\Esri.Calcite.WPF\Esri.Calcite.WPF.csproj /p:Configuration=Release | |
- name: Build WinUI | |
run: | | |
msbuild /restore /t:Build src\Esri.Calcite.WinUI\Esri.Calcite.WinUI.csproj /p:Configuration=Release | |
- name: Build MAUI | |
run: | | |
msbuild /restore /t:Build src\Esri.Calcite.Maui\Esri.Calcite.Maui.csproj /p:Configuration=Release | |
- name: Upload NuGet artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: NuGet Packages | |
path: artifacts/NuGet/Release | |