-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathSysML2.NET.Extensions.Tests.csproj
More file actions
41 lines (36 loc) · 1.85 KB
/
SysML2.NET.Extensions.Tests.csproj
File metadata and controls
41 lines (36 loc) · 1.85 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<LangVersion>12.0</LangVersion>
<Company>Starion Group S.A.</Company>
<Authors>Sam Gerene</Authors>
<Description>Nunit test suite for the SysML2.NET.Extensions Library</Description>
<Copyright>Copyright © Starion Group S.A.</Copyright>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<RepositoryUrl>https://github.com/STARIONGROUP/SysML2.NET.git</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
<ImplicitUsings>false</ImplicitUsings>
<Nullable>disable</Nullable>
<IsPackable>false</IsPackable>
<PreserveCompilationContext>true</PreserveCompilationContext>
<SatelliteResourceLanguages>en-US</SatelliteResourceLanguages>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="10.0.2" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
<PackageReference Include="NUnit" Version="4.4.0" />
<PackageReference Include="NUnit.Console" Version="3.22.0" />
<PackageReference Include="NUnit3TestAdapter" Version="6.1.0" />
<PackageReference Include="coverlet.collector" Version="6.0.4">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.msbuild" Version="6.0.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SysML2.NET.Extensions\SysML2.NET.Extensions.csproj" />
</ItemGroup>
</Project>