-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCSharpTestDemo.csproj
115 lines (115 loc) · 4.35 KB
/
CSharpTestDemo.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{03C3F9EC-FB25-46C0-8F0D-17A0C6E60E9F}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnitTestDemo</RootNamespace>
<AssemblyName>CSharpTestDemo</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<RunCodeAnalysis>false</RunCodeAnalysis>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\..\..\src\csharp\ApartmentTests.cs">
<Link>ApartmentTests.cs</Link>
</Compile>
<Compile Include="..\..\..\src\csharp\AsyncTests.cs">
<Link>AsyncTests.cs</Link>
</Compile>
<Compile Include="..\..\..\src\csharp\ConfigFileTests.cs">
<Link>ConfigFileTests.cs</Link>
</Compile>
<Compile Include="..\..\..\src\csharp\ExpectedOutcomeAttributes.cs">
<Link>ExpectedOutcomeAttributes.cs</Link>
</Compile>
<Compile Include="..\..\..\src\csharp\GenericTests.cs">
<Link>GenericTests.cs</Link>
</Compile>
<Compile Include="..\..\..\src\csharp\InheritedTestTests.cs">
<Link>InheritedTestTests.cs</Link>
</Compile>
<Compile Include="..\..\..\src\csharp\OneTimeSetUpTests.cs">
<Link>OneTimeSetUpTests.cs</Link>
</Compile>
<Compile Include="..\..\..\src\csharp\ParameterizedTests.cs">
<Link>ParameterizedTests.cs</Link>
</Compile>
<Compile Include="..\..\..\src\csharp\SetUpFixtureTests.cs">
<Link>SetUpFixtureTests.cs</Link>
</Compile>
<Compile Include="..\..\..\src\csharp\SimpleTests.cs">
<Link>SimpleTests.cs</Link>
</Compile>
<Compile Include="..\..\..\src\csharp\TextOutputTests.cs">
<Link>TextOutputTests.cs</Link>
</Compile>
<Compile Include="..\..\..\src\csharp\Theories.cs">
<Link>Theories.cs</Link>
</Compile>
<Compile Include="ExplicitClass.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="TestCaseSourceTests.cs" />
</ItemGroup>
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\..\src\App.config">
<Link>App.config</Link>
</None>
</ItemGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Configuration" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="NUnit">
<Version>3.12.0</Version>
</PackageReference>
<PackageReference Include="NUnit3TestAdapter">
<Version>3.17.0-beta.1</Version>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PostBuildEvent>
</PostBuildEvent>
</PropertyGroup>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>