-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathTestCase.csproj
More file actions
39 lines (33 loc) · 1.21 KB
/
TestCase.csproj
File metadata and controls
39 lines (33 loc) · 1.21 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<RootNamespace>unvell.ReoScript.TestCase</RootNamespace>
<AssemblyName>unvell.ReoScript.TestCase</AssemblyName>
<OutputType>Library</OutputType>
<LangVersion>latest</LangVersion>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<EnableDefaultItems>false</EnableDefaultItems>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
</PropertyGroup>
<ItemGroup>
<Compile Include="Program.cs" />
<Compile Include="CLRTestCases.cs" />
<Compile Include="XmlTestAdapter.cs" />
<Compile Include="JitBenchmark.cs" />
<Compile Include="EngineTests.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="tests\*.xml" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ReoScript\ReoScript.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="xunit" Version="2.*" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.*">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.*" />
</ItemGroup>
</Project>