Skip to content

Commit

Permalink
Setup dotnet-releaser
Browse files Browse the repository at this point in the history
  • Loading branch information
spouliot committed Feb 11, 2022
1 parent 518df55 commit fd9e91b
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
bin/
obj/
.vscode/
artifacts-dotnet-releaser/
6 changes: 6 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# ChangeLog

## 1.0.0 (11 Feb 2022)

### Features
- Add [`is-trimmable <assembly>`](https://github.com/spouliot/cilout/wiki/IsTrimmable) command
18 changes: 17 additions & 1 deletion cilout.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,25 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackAsTool>true</PackAsTool>
<VersionPrefix>0.1.0</VersionPrefix>
<VersionPrefix>1.0.0</VersionPrefix>
</PropertyGroup>

<PropertyGroup>
<Copyright>Sebastien Pouliot</Copyright>
<NeutralLanguage>en-US</NeutralLanguage>
<Authors>Sebastien Pouliot</Authors>
<PackageTags>tool;il;metadata</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>https://github.com/spouliot/cilout/blob/master/ChangeLog.md</PackageReleaseNotes>
<PackageProjectUrl>https://github.com/spouliot/cilout</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
</PropertyGroup>

<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)/README.md" Pack="true" PackagePath="/" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Mono.Cecil" Version="0.11.4" />
<PackageReference Include="Spectre.Console" Version="0.43.0" />
Expand Down
14 changes: 14 additions & 0 deletions dotnet-releaser.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# configuration file for dotnet-releaser

# Disable default packs - It will only publish NuGet and the Changelog
profile = "custom"

[msbuild]
project = "cilout.csproj"

[github]
user = "spouliot"
repo = "cilout"

[changelog]
path = "./ChangeLog.md"

0 comments on commit fd9e91b

Please sign in to comment.