Skip to content

Commit

Permalink
Use dotnet-releaser, publish for more architectures
Browse files Browse the repository at this point in the history
  • Loading branch information
rgwood committed Feb 27, 2022
1 parent 740ff54 commit 135348f
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,6 @@ project.lock.json
appsettings.json
local.settings.json

.DS_Store
.DS_Store

artifacts-dotnet-releaser
5 changes: 3 additions & 2 deletions RezoningScraper/RezoningScraper.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>2.3.0.0</Version>

<Version>2.3.1.0</Version>
<Description>RezoningScraper keeps tabs on rezoning+development applications in Vancouver</Description>
<PackageLicenseExpression>Unlicense</PackageLicenseExpression>
</PropertyGroup>

<ItemGroup>
Expand Down
32 changes: 32 additions & 0 deletions dotnet-releaser.toml
Original file line number Diff line number Diff line change
@@ -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"]

0 comments on commit 135348f

Please sign in to comment.