diff options
author | Luca Matei Pintilie <luca@lucamatei.com> | 2024-10-30 20:59:53 +0000 |
---|---|---|
committer | Luca Matei Pintilie <luca@lucamatei.com> | 2024-10-30 20:59:53 +0000 |
commit | dc1938dbb98dc9edf16558e505b2961246c83e6e (patch) | |
tree | 7953186976085ceca6c03a208d1ffd9596f745be /Tests/Tests.csproj | |
parent | fc3c7e3b3c955cc274d4668768466fecb8fb727b (diff) | |
download | wikiwaka-dc1938dbb98dc9edf16558e505b2961246c83e6e.tar wikiwaka-dc1938dbb98dc9edf16558e505b2961246c83e6e.tar.gz wikiwaka-dc1938dbb98dc9edf16558e505b2961246c83e6e.tar.bz2 wikiwaka-dc1938dbb98dc9edf16558e505b2961246c83e6e.tar.lz wikiwaka-dc1938dbb98dc9edf16558e505b2961246c83e6e.tar.xz wikiwaka-dc1938dbb98dc9edf16558e505b2961246c83e6e.tar.zst wikiwaka-dc1938dbb98dc9edf16558e505b2961246c83e6e.zip |
Diffstat (limited to '')
-rw-r--r-- | Tests/Tests.csproj | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Tests/Tests.csproj b/Tests/Tests.csproj new file mode 100644 index 0000000..5c37b71 --- /dev/null +++ b/Tests/Tests.csproj @@ -0,0 +1,23 @@ +<Project Sdk="Microsoft.NET.Sdk">
+
+ <PropertyGroup>
+ <TargetFramework>net8.0</TargetFramework>
+ <ImplicitUsings>enable</ImplicitUsings>
+ <Nullable>enable</Nullable>
+
+ <IsPackable>false</IsPackable>
+ <IsTestProject>true</IsTestProject>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.0" />
+ <PackageReference Include="MSTest.TestAdapter" Version="3.0.4" />
+ <PackageReference Include="MSTest.TestFramework" Version="3.0.4" />
+ <PackageReference Include="coverlet.collector" Version="6.0.0" />
+ </ItemGroup>
+
+ <ItemGroup> + <ProjectReference Include="..\Api\Api.csproj" /> + </ItemGroup>
+
+</Project>
|