We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1076d97 commit f1bd668Copy full SHA for f1bd668
1 file changed
Directory.Build.props
@@ -11,6 +11,10 @@
11
</PropertyGroup>
12
13
<PropertyGroup>
14
+ <!-- This works around issues with dotnet test which are fixed in https://github.com/dotnet/sdk/pull/51794 -->
15
+ <!-- It can be safely removed once .NET SDK 10.0.101 is out and is used in the repo -->
16
+ <Configuration Condition="'$(Configuration)' == ''">Debug</Configuration>
17
+
18
<RepoRoot>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)'))</RepoRoot>
19
<ArtifactsDir Condition="'$(ArtifactsDir)' == ''">$([MSBuild]::NormalizeDirectory('$(RepoRoot)', 'artifacts'))</ArtifactsDir>
20
<ArtifactsObjDir>$([MSBuild]::NormalizeDirectory('$(ArtifactsDir)', 'obj'))</ArtifactsObjDir>
0 commit comments