Skip to content

Commit ad0c3f2

Browse files
committed
update build and packages
1 parent e83884d commit ad0c3f2

File tree

3 files changed

+17
-6
lines changed

3 files changed

+17
-6
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,11 @@ jobs:
5353
run: 'dotnet build --no-restore --configuration Release'
5454

5555
- name: Test Project
56-
run: 'dotnet test --no-build --no-restore --configuration Release'
56+
run: 'dotnet test --no-build --configuration Release'
5757

5858
- name: Create Packages
5959
if: success() && github.event_name != 'pull_request'
60-
run: 'dotnet pack --configuration Release --include-symbols --include-source --no-build --no-restore --output "${{env.BUILD_PATH}}"'
60+
run: 'dotnet pack --configuration Release --no-build --output "${{env.BUILD_PATH}}"'
6161

6262
- name: Upload Packages
6363
if: success() && github.event_name != 'pull_request'

src/Serilog.Sinks.AzureTableStorage/Serilog.Sinks.AzureTableStorage.csproj

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,22 @@
1616
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1717
<RepositoryUrl>https://github.com/serilog-contrib/serilog-sinks-azuretablestorage.git</RepositoryUrl>
1818
<RepositoryType>git</RepositoryType>
19+
<PublishRepositoryUrl>true</PublishRepositoryUrl>
1920
<GenerateDocumentationFile>true</GenerateDocumentationFile>
2021
<RootNamespace>Serilog</RootNamespace>
2122
<LangVersion>latest</LangVersion>
2223
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
23-
<Copyright>Copyright © Serilog Contributors 2023</Copyright>
24+
<Copyright>Copyright © Serilog Contributors 2024</Copyright>
25+
</PropertyGroup>
26+
27+
<PropertyGroup Label="Debug">
28+
<DebugType>embedded</DebugType>
29+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
30+
<IncludeSymbols>false</IncludeSymbols>
31+
</PropertyGroup>
32+
33+
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
34+
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
2435
</PropertyGroup>
2536

2637
<ItemGroup>
@@ -43,7 +54,7 @@
4354
<ItemGroup>
4455
<PackageReference Include="MinVer" Version="5.0.0" PrivateAssets="All" />
4556
<PackageReference Include="Serilog" Version="3.1.1" />
46-
<PackageReference Include="Serilog.Sinks.PeriodicBatching" Version="4.0.1" />
57+
<PackageReference Include="Serilog.Sinks.PeriodicBatching" Version="4.1.0" />
4758
<PackageReference Include="Azure.Data.Tables" Version="12.8.3" />
4859
<PackageReference Include="ulid" Version="1.3.3" />
4960
</ItemGroup>

test/Serilog.Sinks.AzureTableStorage.Tests/Serilog.Sinks.AzureTableStorage.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
<ItemGroup>
1616
<PackageReference Include="FluentAssertions" Version="6.12.0" />
1717
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
18-
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.8">
18+
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.0">
1919
<PrivateAssets>all</PrivateAssets>
2020
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
2121
</PackageReference>
22-
<PackageReference Include="xunit" Version="2.7.1" />
22+
<PackageReference Include="xunit" Version="2.8.0" />
2323
</ItemGroup>
2424

2525
</Project>

0 commit comments

Comments
 (0)