From 135348fd8d570bc3d4afe5cfc30721faa3565957 Mon Sep 17 00:00:00 2001 From: Reilly Wood Date: Sun, 27 Feb 2022 09:35:37 -0800 Subject: [PATCH] Use dotnet-releaser, publish for more architectures --- .gitignore | 4 +++- RezoningScraper/RezoningScraper.csproj | 5 ++-- dotnet-releaser.toml | 32 ++++++++++++++++++++++++++ 3 files changed, 38 insertions(+), 3 deletions(-) create mode 100644 dotnet-releaser.toml diff --git a/.gitignore b/.gitignore index 4bba82f..29df603 100644 --- a/.gitignore +++ b/.gitignore @@ -24,4 +24,6 @@ project.lock.json appsettings.json local.settings.json -.DS_Store \ No newline at end of file +.DS_Store + +artifacts-dotnet-releaser diff --git a/RezoningScraper/RezoningScraper.csproj b/RezoningScraper/RezoningScraper.csproj index ee4911a..a40b6f6 100644 --- a/RezoningScraper/RezoningScraper.csproj +++ b/RezoningScraper/RezoningScraper.csproj @@ -5,8 +5,9 @@ net6.0 enable enable - 2.3.0.0 - + 2.3.1.0 + RezoningScraper keeps tabs on rezoning+development applications in Vancouver + Unlicense diff --git a/dotnet-releaser.toml b/dotnet-releaser.toml new file mode 100644 index 0000000..c80db70 --- /dev/null +++ b/dotnet-releaser.toml @@ -0,0 +1,32 @@ +# configuration file for dotnet-releaser +# run with: dotnet-releaser build --force dotnet-releaser.toml + +# disable default settings +profile = "custom" + +[msbuild] +project = "RezoningScraper/RezoningScraper.csproj" + +[msbuild.properties] +PublishTrimmed = true +PublishSingleFile = true +SelfContained = true +PublishReadyToRun = false +CopyOutputSymbolsToPublishDirectory = false +SkipCopyingSymbolsToOutputDirectory = true +DebugType = "embedded" +IncludeNativeLibrariesForSelfExtract = true + +[github] +user = "rgwood" +repo = "RezoningScraper" + +[changelog] +publish = false + +[nuget] +publish = false + +[[pack]] +rid = ["win-x64", "win-arm64", "linux-x64", "linux-arm64","osx-x64", "osx-arm64"] +kinds = ["zip"]