diff --git a/Testik/Properties/AssemblyInfo.cs b/Testik/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..411c288
--- /dev/null
+++ b/Testik/Properties/AssemblyInfo.cs
@@ -0,0 +1,35 @@
+using System.Reflection;
+using System.Runtime.InteropServices;
+
+// General Information about an assembly is controlled through the following
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("Testik")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("Testik")]
+[assembly: AssemblyCopyright("Copyright © 2025")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible
+// to COM components. If you need to access a type in this assembly from
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+// The following GUID is for the ID of the typelib if this project is exposed to COM
+[assembly: Guid("48763C9F-7F9B-4A4B-BB18-F9D0BFEC3500")]
+
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Build Number
+// Revision
+//
+// You can specify all the values or you can default the Build and Revision Numbers
+// by using the '*' as shown below:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
\ No newline at end of file
diff --git a/Testik/Testik.csproj b/Testik/Testik.csproj
new file mode 100644
index 0000000..18890f3
--- /dev/null
+++ b/Testik/Testik.csproj
@@ -0,0 +1,68 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {48763C9F-7F9B-4A4B-BB18-F9D0BFEC3500}
+ {FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
+ Library
+ Properties
+ Testik
+ Testik
+ v4.8
+ 512
+
+
+ AnyCPU
+ true
+ full
+ false
+ bin\Debug\
+ DEBUG;TRACE
+ prompt
+ 4
+
+
+ AnyCPU
+ pdbonly
+ true
+ bin\Release\
+ TRACE
+ prompt
+ 4
+
+
+
+
+
+
+
+ ..\packages\xunit.abstractions.2.0.0\lib\net35\xunit.abstractions.dll
+
+
+ ..\packages\xunit.assert.2.1.0\lib\dotnet\xunit.assert.dll
+
+
+ ..\packages\xunit.extensibility.core.2.1.0\lib\dotnet\xunit.core.dll
+
+
+ ..\packages\xunit.extensibility.execution.2.1.0\lib\net45\xunit.execution.desktop.dll
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Testik/Tests.cs b/Testik/Tests.cs
new file mode 100644
index 0000000..96a20d8
--- /dev/null
+++ b/Testik/Tests.cs
@@ -0,0 +1,14 @@
+using System;
+using Xunit;
+
+namespace Testik
+{
+ public class Tests
+ {
+ [Fact]
+ public void Test1()
+ {
+ Assert.True(true);
+ }
+ }
+}
\ No newline at end of file
diff --git a/Testik/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs b/Testik/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs
new file mode 100644
index 0000000..15efebf
--- /dev/null
+++ b/Testik/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")]
diff --git a/Testik/obj/Debug/Testik.csproj.AssemblyReference.cache b/Testik/obj/Debug/Testik.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..b17c69f
Binary files /dev/null and b/Testik/obj/Debug/Testik.csproj.AssemblyReference.cache differ
diff --git a/Testik/obj/Debug/Testik.csproj.FileListAbsolute.txt b/Testik/obj/Debug/Testik.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..e69de29
diff --git a/Testik/packages.config b/Testik/packages.config
new file mode 100644
index 0000000..69a4ec4
--- /dev/null
+++ b/Testik/packages.config
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file