Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/beeradmoore/imagesharpmauitest
https://github.com/beeradmoore/imagesharpmauitest
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/beeradmoore/imagesharpmauitest
- Owner: beeradmoore
- Created: 2024-07-09T09:06:32.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-08-01T22:31:34.000Z (5 months ago)
- Last Synced: 2024-08-02T00:08:56.613Z (5 months ago)
- Language: C#
- Size: 9.64 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# ImageSharp MAUI Test
SixLabors.ImageSharp.0.0.1.nupkg was built by:
- pulling the ImageSharp repo
- changing to the mono PR
- init the submodule
- executing `dotnet pack -c Release`
- copying the `.nupkg` into `local-packages` folder.## Swapping between latest release and local nuget builds
I keep my IDEs closed while doing this to ensure it does not interfere with things.
I edit `ImageSharpMAUITest.csproj` to change the line
```xml
```
to be either version 3.1.4 (remote) or 0.0.1 (local).
I then delete `bin/`, `obj/`, and `~/.nuget/packages/sixlabors.*`. When I build the nuget packages are restored which will mean also loaded directly from local directory or nuget.org.
## Building and deploying for debug
```
dotnet build -t:Run -c Debug -f net8.0-ios -p:RuntimeIdentifier=ios-arm64 -p:_DeviceName=MYDEVICEID
```## Building and deploying for release
```
dotnet build -t:Run -c Release -f net8.0-ios -p:RuntimeIdentifier=ios-arm64 -p:_DeviceName=MYDEVICEID
```