Skip to content

Commit 6b8167c

Browse files
committed
feat: Update Coverlet version to 8.0.0 and add CI build properties for GitHub Actions
1 parent 16e890b commit 6b8167c

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
"ms-azure-devops.azure-pipelines",
3939
"GitHub.copilot-chat",
4040
"GitHub.copilot",
41+
"github.vscode-github-actions"
4142
"mhutchie.git-graph",
4243
"streetsidesoftware.code-spell-checker",
4344
"streetsidesoftware.code-spell-checker-german",

Directory.Build.props

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,19 @@
2828
<!-- C:\Program Files\dotnet\sdk\8.0.100\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.DefaultOutputPaths.targets -->
2929
<UseArtifactsOutput>true</UseArtifactsOutput>
3030
<ArtifactsPath>$(MSBuildThisFileDirectory)artifacts</ArtifactsPath>
31-
<CoverletVersion Condition="'$(CoverletVersion)'==''">6.0.0</CoverletVersion>
31+
<CoverletVersion Condition="'$(CoverletVersion)'==''">8.0.0</CoverletVersion>
3232
</PropertyGroup>
3333

3434
<PropertyGroup Condition="'$(TF_BUILD)' == 'true'">
3535
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
3636
<Deterministic>true</Deterministic>
3737
</PropertyGroup>
3838

39+
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
40+
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
41+
<Deterministic>true</Deterministic>
42+
</PropertyGroup>
43+
3944
<ItemGroup>
4045
<VSTestLogger Include="trx%3BLogFileName=TestResults-$(TargetFramework)-$(MSBuildProjectName).trx" />
4146
<VSTestLogger Include="html%3BLogFileName=TestResults-$(TargetFramework)-$(MSBuildProjectName).html" />

0 commit comments

Comments
 (0)