Skip to content

Commit e1fc354

Browse files
committed
build updates
1 parent 5170b91 commit e1fc354

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/dotnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
run: dotnet restore
3838

3939
- name: Build Solution
40-
run: 'dotnet build --no-restore --configuration Release /p:ContinuousIntegrationBuild=true'
40+
run: 'dotnet build --no-restore --configuration Release'
4141

4242
- name: Run Test
4343
run: dotnet test --no-build --configuration Release --collect:"XPlat Code Coverage" --settings coverlet.runsettings

src/Directory.Build.props

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<Authors>LoreSoft</Authors>
77
<NeutralLanguage>en-US</NeutralLanguage>
88
<GenerateDocumentationFile>true</GenerateDocumentationFile>
9-
<PackageTags>orm;sql;micro-orm;database</PackageTags>
9+
<PackageTags>dotnet roslyn source-generator generator</PackageTags>
1010
<PackageProjectUrl>https://github.com/loresoft/AssemblyMetadata.Generators</PackageProjectUrl>
1111
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1212
<PackageIcon>logo.png</PackageIcon>
@@ -15,13 +15,18 @@
1515
<RepositoryUrl>https://github.com/loresoft/AssemblyMetadata.Generators</RepositoryUrl>
1616
<PublishRepositoryUrl>true</PublishRepositoryUrl>
1717
<EmbedUntrackedSources>true</EmbedUntrackedSources>
18+
<DebugType>embedded</DebugType>
1819
</PropertyGroup>
1920

2021
<PropertyGroup>
2122
<LangVersion>latest</LangVersion>
2223
<ImplicitUsings>enable</ImplicitUsings>
2324
<NoWarn>1591</NoWarn>
2425
</PropertyGroup>
26+
27+
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
28+
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
29+
</PropertyGroup>
2530

2631
<PropertyGroup>
2732
<MinVerTagPrefix>v</MinVerTagPrefix>

0 commit comments

Comments
 (0)