diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 76f135a..352071f 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -21,8 +21,8 @@ jobs: - name: Restore, Build, and Pack run: | dotnet restore *.sln - dotnet build *.sln --configuration Release --no-restore - dotnet pack *.sln --configuration Release --no-build --output ./artifacts + dotnet build *.sln --configuration Release --no-restore -p:ContinuousIntegrationBuild=true + dotnet pack *.sln --configuration Release --no-build --output ./artifacts -p:ContinuousIntegrationBuild=true - name: Publish to NuGet run: dotnet nuget push ./artifacts/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate diff --git a/CHANGELOG.md b/CHANGELOG.md index 1fbd49e..9d5d360 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,10 +5,15 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased][Unreleased] +## [Unreleased] +## [0.0.2-alpha] - 2025-07-12 -## [0.0.1-alpha][0.0.1-alpha] +### Fixed + +- Packaging + +## [0.0.1-alpha] - 2025-07-12 ### Added @@ -54,4 +59,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Diagnostic log of the source generation process and timing included. [Unreleased]: https://github.com/datacute/SourceGeneratorContext/compare/0.0.1-alpha...develop -[0.0.1-alpha]: https://github.com/datacute/SourceGeneratorContext/releases/tag/0.0.1-alpha \ No newline at end of file +[0.0.1-alpha]: https://github.com/datacute/SourceGeneratorContext/releases/0.0.1-alpha \ No newline at end of file diff --git a/SourceGeneratorContext/SourceGeneratorContext.csproj b/SourceGeneratorContext/SourceGeneratorContext.csproj index c3b5395..f992cbe 100644 --- a/SourceGeneratorContext/SourceGeneratorContext.csproj +++ b/SourceGeneratorContext/SourceGeneratorContext.csproj @@ -19,6 +19,7 @@ true true + portable true @@ -30,6 +31,7 @@ README.md false MIT + true @@ -52,32 +54,29 @@ + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + - - - - - - + + + + - - - + + + + + - + - - - - - - - diff --git a/version.props b/version.props index ce771c6..356ac8b 100644 --- a/version.props +++ b/version.props @@ -1,6 +1,6 @@ - 0.0.1 + 0.0.2 alpha \ No newline at end of file