From d6adac69ab2ebcbb4b0b234005b4f928319e5cb3 Mon Sep 17 00:00:00 2001 From: Serghei Cebotari Date: Wed, 9 Aug 2023 09:12:09 +0300 Subject: Initial commit --- Codeforces.Test/Codeforces.Test.csproj | 28 ++++++++++++++++++++++++++++ Codeforces.Test/UnitTest1.cs | 10 ++++++++++ Codeforces.Test/Usings.cs | 1 + 3 files changed, 39 insertions(+) create mode 100644 Codeforces.Test/Codeforces.Test.csproj create mode 100644 Codeforces.Test/UnitTest1.cs create mode 100644 Codeforces.Test/Usings.cs (limited to 'Codeforces.Test') 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 @@ + + + + net6.0 + enable + enable + + false + + + + + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + + + + + + 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 -- cgit v1.2.3