Skip to content

Commit 4d21add

Browse files
authored
Merge branch 'main' into copilot/add-symbols-to-nuget-packages
2 parents 3c24021 + 7788238 commit 4d21add

4 files changed

Lines changed: 12 additions & 6 deletions

File tree

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,16 +54,16 @@ jobs:
5454
run: dotnet restore EasySourceGenerators.sln
5555

5656
- name: Build
57-
run: dotnet build EasySourceGenerators.sln --no-restore --configuration Release
57+
run: dotnet build EasySourceGenerators.sln --no-restore --configuration Release -p:ContinuousIntegrationBuild=true
5858

5959
- name: Test
60-
run: dotnet test EasySourceGenerators.sln --no-build --configuration Release --verbosity normal
60+
run: dotnet test EasySourceGenerators.sln --no-build --configuration Release --verbosity normal -p:ContinuousIntegrationBuild=true
6161

6262
- name: Pack Abstractions
63-
run: dotnet pack EasySourceGenerators.Abstractions/EasySourceGenerators.Abstractions.csproj --no-build --configuration Release --output ./artifacts
63+
run: dotnet pack EasySourceGenerators.Abstractions/EasySourceGenerators.Abstractions.csproj --no-build --configuration Release --output ./artifacts -p:ContinuousIntegrationBuild=true
6464

6565
- name: Pack Generators
66-
run: dotnet pack EasySourceGenerators.Generators/EasySourceGenerators.Generators.csproj --no-build --configuration Release --output ./artifacts
66+
run: dotnet pack EasySourceGenerators.Generators/EasySourceGenerators.Generators.csproj --no-build --configuration Release --output ./artifacts -p:ContinuousIntegrationBuild=true
6767

6868
- name: NuGet login
6969
uses: NuGet/login@v1

EasySourceGenerators.Abstractions/EasySourceGenerators.Abstractions.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
</ItemGroup>
2323

2424
<ItemGroup>
25-
<None Include="..\README.md" Pack="true" PackagePath="\" />
25+
<None Include="README.md" Pack="true" PackagePath="\" />
2626
</ItemGroup>
2727

2828
</Project>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Abstractions package for [EasySourceGenerators.Generators](https://www.nuget.org/packages/EasySourceGenerators.Generators/). Does not contain any logic or generators.
2+

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# EasySourceGenerators
22

3-
[![CI](https://github.com/dex3r/EasySourceGenerators/actions/workflows/ci.yml/badge.svg)](https://github.com/dex3r/EasySourceGenerators/actions/workflows/ci.yml) [![codecov](https://codecov.io/gh/dex3r/EasySourceGenerators/branch/main/graph/badge.svg)](https://codecov.io/gh/dex3r/EasySourceGenerators)
3+
[![NuGet](https://img.shields.io/nuget/v/EasySourceGenerators.Generators?logo=nuget)](https://www.nuget.org/packages/EasySourceGenerators.Generators/)
4+
[![MIT License](https://img.shields.io/github/license/dex3r/EasySourceGenerators)](https://github.com/dex3r/EasySourceGenerators/blob/main/LICENSE)
5+
[![GitHub Repo](https://img.shields.io/badge/GitHub-dex3r%2FEasySourceGenerators-181717?logo=github)](https://github.com/dex3r/EasySourceGenerators)
6+
[![CI](https://github.com/dex3r/EasySourceGenerators/actions/workflows/ci.yml/badge.svg)](https://github.com/dex3r/EasySourceGenerators/actions/workflows/ci.yml)
7+
[![codecov](https://codecov.io/gh/dex3r/EasySourceGenerators/branch/main/graph/badge.svg)](https://codecov.io/gh/dex3r/EasySourceGenerators)
48

59
**Easy Source Generators** - Code generation made easy.
610

0 commit comments

Comments
 (0)