-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathReqIFSharp.Extensions.Tests.csproj
More file actions
56 lines (48 loc) · 2.35 KB
/
ReqIFSharp.Extensions.Tests.csproj
File metadata and controls
56 lines (48 loc) · 2.35 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Company>Starion Group S.A.</Company>
<Authors>Sam Gerené</Authors>
<Description>Nunit test suite for the ReqIFSharp.Extensions library</Description>
<Copyright>Copyright 2017-2025 Starion Group S.A.</Copyright>
<RepositoryUrl>https://github.com/STARIONGROUP/reqifsharp.git</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
<Nullable>disable</Nullable>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="10.0.3" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
<PackageReference Include="NUnit" Version="4.5.0" />
<PackageReference Include="NUnit.Console" Version="3.22.0" />
<PackageReference Include="NUnit3TestAdapter" Version="6.1.0" />
<PackageReference Include="coverlet.collector" Version="8.0.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.msbuild" Version="8.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Serilog" Version="4.3.1" />
<PackageReference Include="Serilog.Extensions.Logging" Version="10.0.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="6.1.1" />
</ItemGroup>
<ItemGroup>
<Folder Include="Services\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ReqIFSharp.Extensions\ReqIFSharp.Extensions.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="TestData\ProR_Traceability-Template-v1.0.reqif">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="TestData\requirements-and-objects.reqifz">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="TestData\test-multiple-reqif.reqifz">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>