Skip to content

Commit 1c1c7d6

Browse files
author
Chris Martinez
committed
Explicitly mark projects as non-test, which will be honored in a future release of 'dotnet test'
1 parent 4647b60 commit 1c1c7d6

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

samples/directory.build.props

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33

4-
<PropertyGroup Label="C#">
4+
<PropertyGroup>
55
<LangVersion>latest</LangVersion>
6+
<IsTestProject>false</IsTestProject>
67
</PropertyGroup>
78

89
</Project>

src/directory.build.props

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,8 @@
88
<Import Project="..\build\nuget.props" />
99
</ImportGroup>
1010

11+
<PropertyGroup>
12+
<IsTestProject>false</IsTestProject>
13+
</PropertyGroup>
14+
1115
</Project>

0 commit comments

Comments
 (0)