Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/BuildSuccess_Check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,19 @@ jobs:
uses: microsoft/setup-msbuild@v2
- name: Build MAUI (Windows)
run: |
msbuild /restore /t:Build src/MAUI/ArcGIS.Samples.MAUI.sln /p:Configuration=Release /p:CentralPackageManagementEnabled=true /p:TargetFramework=net9.0-windows10.0.19041.0 /p:RuntimeIdentifier=win10-x64 /p:RuntimeIdentifierOverride=win10-x64 /p:UseRidGraph=true
msbuild /restore /t:Build src/MAUI/ArcGIS.Samples.MAUI.slnx /p:Configuration=Release /p:CentralPackageManagementEnabled=true /p:TargetFramework=net9.0-windows10.0.19041.0 /p:RuntimeIdentifier=win10-x64 /p:RuntimeIdentifierOverride=win10-x64 /p:UseRidGraph=true

- name: Build MAUI (Android)
run: |
msbuild /restore /t:Build src/MAUI/ArcGIS.Samples.MAUI.sln /p:Configuration=Release /p:CentralPackageManagementEnabled=true /p:TargetFramework=net9.0-android
msbuild /restore /t:Build src/MAUI/ArcGIS.Samples.MAUI.slnx /p:Configuration=Release /p:CentralPackageManagementEnabled=true /p:TargetFramework=net9.0-android

- name: Build MAUI (iOS)
run: |
msbuild /restore /t:Build src/MAUI/ArcGIS.Samples.MAUI.sln /p:Configuration=Release /p:CentralPackageManagementEnabled=true /p:TargetFramework=net9.0-ios
msbuild /restore /t:Build src/MAUI/ArcGIS.Samples.MAUI.slnx /p:Configuration=Release /p:CentralPackageManagementEnabled=true /p:TargetFramework=net9.0-ios

- name: Build MAUI (Mac)
run: |
msbuild /restore /t:Build src/MAUI/ArcGIS.Samples.MAUI.sln /p:Configuration=Release /p:CentralPackageManagementEnabled=true /p:TargetFramework=net9.0-maccatalyst
msbuild /restore /t:Build src/MAUI/ArcGIS.Samples.MAUI.slnx /p:Configuration=Release /p:CentralPackageManagementEnabled=true /p:TargetFramework=net9.0-maccatalyst


# WPF .NET Build
Expand All @@ -55,7 +55,7 @@ jobs:

- name: Build WPF .NET
run: |
msbuild /restore /t:Build src/WPF/ArcGIS.WPF.Viewer.Net.sln /p:Configuration=Release /p:CentralPackageManagementEnabled=true
msbuild /restore /t:Build src/WPF/ArcGIS.WPF.Viewer.Net.slnx /p:Configuration=Release /p:CentralPackageManagementEnabled=true


# WinUI Build
Expand All @@ -71,4 +71,4 @@ jobs:

- name: Build WinUI
run: |
msbuild /restore /t:Build src/WinUI/ArcGIS.WinUI.Viewer.sln /p:Configuration=Release /p:CentralPackageManagementEnabled=true
msbuild /restore /t:Build src/WinUI/ArcGIS.WinUI.Viewer.slnx /p:Configuration=Release /p:CentralPackageManagementEnabled=true
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ Or, you can browse a searchable list of samples on the ArcGIS for developers web

If you want to modify or debug sample code, you can clone this repo and load one of the following solutions:

- All: `src\ArcGIS.Viewers.All.sln`
- All: `src\ArcGIS.Viewers.All.slnx`

If you are only interested in one platform, you can open a platform-specific solutions:

- [WPF .NET](src/WPF/readme.md): `src\WPF\WPF.Viewer.Net.sln`
- [.NET MAUI](src/MAUI/readme.md): `src\MAUI\ArcGIS.Samples.Maui.sln`
- [WinUI](src/WinUI/readme.md): `src\WinUI\ArcGIS.WinUI.Viewer.sln`
- [WPF .NET](src/WPF/readme.md): `src\WPF\WPF.Viewer.Net.slnx`
- [.NET MAUI](src/MAUI/readme.md): `src\MAUI\ArcGIS.Samples.Maui.slnx`
- [WinUI](src/WinUI/readme.md): `src\WinUI\ArcGIS.WinUI.Viewer.slnx`

## Notes

Expand Down
111 changes: 0 additions & 111 deletions src/ArcGIS.AllSampleViewers.sln

This file was deleted.

31 changes: 31 additions & 0 deletions src/ArcGIS.AllSampleViewers.slnx
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<Solution>
<Configurations>
<Platform Name="Any CPU" />
<Platform Name="ARM64" />
<Platform Name="x64" />
</Configurations>
<Folder Name="/Build/">
<File Path="Directory.Packages.props" />
</Folder>
<Folder Name="/MAUI/">
<Project DefaultStartup="true" Path="MAUI/Maui.Samples/ArcGIS.Samples.Maui.csproj">
<Deploy />
</Project>
</Folder>
<Folder Name="/WinUI/">
<Project Path="WinUI/ArcGIS.WinUI.Viewer/ArcGIS.WinUI.Viewer.csproj">
<Platform Solution="*|Any CPU" Project="x64" />
<Platform Solution="*|ARM64" Project="ARM64" />
<Platform Solution="*|x64" Project="x64" />
<Deploy />
</Project>
</Folder>
<Folder Name="/WPF/">
<Project Path="WPF/WPF.Viewer/ArcGIS.WPF.Viewer.Net.csproj">
<Platform Solution="*|ARM64" Project="ARM64" />
<Platform Solution="*|x64" Project="x64" />
</Project>
</Folder>
<Project Path="Samples.CatalogGenerator/Samples.CatalogGenerator.csproj" />
<Project Path="Samples.Shared/ArcGIS.Samples.Shared.shproj" />
</Solution>
38 changes: 0 additions & 38 deletions src/MAUI/ArcGIS.Samples.Maui.sln

This file was deleted.

13 changes: 13 additions & 0 deletions src/MAUI/ArcGIS.Samples.Maui.slnx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<Solution>
<Configurations>
<Platform Name="Any CPU" />
<Platform Name="ARM64" />
<Platform Name="x64" />
</Configurations>

<Project DefaultStartup="true" Path="Maui.Samples/ArcGIS.Samples.Maui.csproj">
<Deploy />
</Project>
<Project Path="../Samples.CatalogGenerator/Samples.CatalogGenerator.csproj" />
<Project Path="../Samples.Shared/ArcGIS.Samples.Shared.shproj" />
</Solution>
77 changes: 0 additions & 77 deletions src/WPF/ArcGIS.WPF.Viewer.Net.sln

This file was deleted.

Loading
Loading