aboutsummaryrefslogtreecommitdiff
path: root/Codeforces.Test
diff options
context:
space:
mode:
authorSerghei Cebotari <serghei@cebotari.ru>2023-08-09 09:12:09 +0300
committerSerghei Cebotari <serghei@cebotari.ru>2023-08-09 09:12:09 +0300
commitd6adac69ab2ebcbb4b0b234005b4f928319e5cb3 (patch)
tree58043aac32f7702f5b72888d2c2a1b191264521e /Codeforces.Test
Initial commit
Diffstat (limited to 'Codeforces.Test')
-rw-r--r--Codeforces.Test/Codeforces.Test.csproj28
-rw-r--r--Codeforces.Test/UnitTest1.cs10
-rw-r--r--Codeforces.Test/Usings.cs1
3 files changed, 39 insertions, 0 deletions
diff --git a/Codeforces.Test/Codeforces.Test.csproj b/Codeforces.Test/Codeforces.Test.csproj
new file mode 100644
index 0000000..cfcaf99
--- /dev/null
+++ b/Codeforces.Test/Codeforces.Test.csproj
@@ -0,0 +1,28 @@
+<Project Sdk="Microsoft.NET.Sdk">
+
+ <PropertyGroup>
+ <TargetFramework>net6.0</TargetFramework>
+ <ImplicitUsings>enable</ImplicitUsings>
+ <Nullable>enable</Nullable>
+
+ <IsPackable>false</IsPackable>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
+ <PackageReference Include="xunit" Version="2.4.1" />
+ <PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
+ <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
+ <PrivateAssets>all</PrivateAssets>
+ </PackageReference>
+ <PackageReference Include="coverlet.collector" Version="3.1.2">
+ <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
+ <PrivateAssets>all</PrivateAssets>
+ </PackageReference>
+ </ItemGroup>
+
+ <ItemGroup>
+ <ProjectReference Include="..\Codeforces.Console\Codeforces.Console.csproj" />
+ </ItemGroup>
+
+</Project>
diff --git a/Codeforces.Test/UnitTest1.cs b/Codeforces.Test/UnitTest1.cs
new file mode 100644
index 0000000..8f7b9b7
--- /dev/null
+++ b/Codeforces.Test/UnitTest1.cs
@@ -0,0 +1,10 @@
+namespace Codeforces.Test;
+
+public class UnitTest1
+{
+ [Fact]
+ public void Test1()
+ {
+
+ }
+} \ No newline at end of file
diff --git a/Codeforces.Test/Usings.cs b/Codeforces.Test/Usings.cs
new file mode 100644
index 0000000..8c927eb
--- /dev/null
+++ b/Codeforces.Test/Usings.cs
@@ -0,0 +1 @@
+global using Xunit; \ No newline at end of file