Skip to content

Commit

Permalink
Initialized project
Browse files Browse the repository at this point in the history
  • Loading branch information
SinoAHpx committed Oct 8, 2024
0 parents commit 083a1c6
Show file tree
Hide file tree
Showing 8 changed files with 99 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
bin/
obj/
/packages/
riderModule.iml
/_ReSharper.Caches/
13 changes: 13 additions & 0 deletions .idea/.idea.Technetium/.idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .idea/.idea.Technetium/.idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/.idea.Technetium/.idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 24 additions & 0 deletions Technetium.Test/Technetium.Test.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<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="coverlet.collector" Version="6.0.0"/>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0"/>
<PackageReference Include="NUnit" Version="3.14.0"/>
<PackageReference Include="NUnit.Analyzers" Version="3.9.0"/>
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0"/>
</ItemGroup>

<ItemGroup>
<Using Include="NUnit.Framework"/>
</ItemGroup>

</Project>
15 changes: 15 additions & 0 deletions Technetium.Test/UnitTest1.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
namespace Technetium.Test;

public class Tests
{
[SetUp]
public void Setup()
{
}

[Test]
public void Test1()
{
Assert.Pass();
}
}
22 changes: 22 additions & 0 deletions Technetium.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Technetium", "Technetium\Technetium.csproj", "{4912771B-B3EE-43D2-A3AA-E53271F75D63}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Technetium.Test", "Technetium.Test\Technetium.Test.csproj", "{EE9E784A-31A4-41D9-85B9-1A562BCE19F2}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{4912771B-B3EE-43D2-A3AA-E53271F75D63}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4912771B-B3EE-43D2-A3AA-E53271F75D63}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4912771B-B3EE-43D2-A3AA-E53271F75D63}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4912771B-B3EE-43D2-A3AA-E53271F75D63}.Release|Any CPU.Build.0 = Release|Any CPU
{EE9E784A-31A4-41D9-85B9-1A562BCE19F2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{EE9E784A-31A4-41D9-85B9-1A562BCE19F2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{EE9E784A-31A4-41D9-85B9-1A562BCE19F2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{EE9E784A-31A4-41D9-85B9-1A562BCE19F2}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
10 changes: 10 additions & 0 deletions Technetium/Technetium.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>13</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

</Project>

0 comments on commit 083a1c6

Please sign in to comment.