-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathReqIFSharp.Tests.csproj
More file actions
99 lines (91 loc) · 4.13 KB
/
ReqIFSharp.Tests.csproj
File metadata and controls
99 lines (91 loc) · 4.13 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
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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Company>Starion Group S.A.</Company>
<Authors>Sam Gerene, Naron Phou</Authors>
<Description>Nunit test suite for the ReqIFSharp 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>
<None Remove="driver.xsd" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\driver.xsd" />
</ItemGroup>
<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>
<ProjectReference Include="..\ReqIFSharp\ReqIFSharp.csproj"></ProjectReference>
</ItemGroup>
<ItemGroup>
<None Update="TestData\Datatype-Demo-XhtML-Fault.reqif">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="TestData\Datatype-Demo.reqif">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="TestData\DefaultValueDemo.reqif">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="TestData\large-sample.reqif">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="TestData\output.reqif">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="output.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="output.zip">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="TestData\ProR_Traceability-Template-v1.0.reqif">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="TestData\reqifsharpgenerated.reqif">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="TestData\requirements-and-objects.reqifz">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="TestData\sampleGH43.zip">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="TestData\sample_debug.reqif">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="TestData\Spielwiese.reqifz">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="TestData\test-multiple-reqif.reqifz">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="TestData\testreqif.reqif">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="testreqif.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>