-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCodeOfChaos.Testing.TUnit.csproj
More file actions
42 lines (36 loc) · 1.83 KB
/
CodeOfChaos.Testing.TUnit.csproj
File metadata and controls
42 lines (36 loc) · 1.83 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<!-- Main package name -->
<PackageId>CodeOfChaos.Testing.TUnit</PackageId>
<Version>0.14.0</Version>
<Authors>Anna Sas</Authors>
<Description>A small library housing extensions to the TUnit framework</Description>
<PackageProjectUrl>https://github.com/code-of-chaos/cs_code-of_chaos-testing</PackageProjectUrl>
<PackageTags>extensions tunit testing</PackageTags>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<DebugType>embedded</DebugType>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>icon.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<None Include="../../LICENSE" Pack="true" PackagePath="" Visible="false" />
<None Include="../../README.md" Pack="true" PackagePath="" Visible="false" />
<None Include="../../assets/icon.png" Pack="true" PackagePath="" Visible="false" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="JetBrains.Annotations" Version="2025.2.2" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.9" />
<PackageReference Include="TUnit.Assertions" Version="0.61.13" />
<PackageReference Include="TUnit.Core" Version="0.61.13" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CodeOfChaos.Testing\CodeOfChaos.Testing.csproj" />
</ItemGroup>
</Project>