This commit is contained in:
Gerard Gascón 2025-04-27 14:16:25 +02:00
commit a1d7386082
7 changed files with 82 additions and 0 deletions

6
.gitignore vendored Normal file
View file

@ -0,0 +1,6 @@
bin/
obj/
/packages/
riderModule.iml
/_ReSharper.Caches/
.idea

22
Project.sln Normal file
View file

@ -0,0 +1,22 @@

Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Project", "Project\Project.csproj", "{55F81521-9AF5-431A-8347-AA7D6349219A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tests", "Tests\Tests.csproj", "{32BB29F6-9636-4FCB-A595-638599ACBC0C}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{55F81521-9AF5-431A-8347-AA7D6349219A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{55F81521-9AF5-431A-8347-AA7D6349219A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{55F81521-9AF5-431A-8347-AA7D6349219A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{55F81521-9AF5-431A-8347-AA7D6349219A}.Release|Any CPU.Build.0 = Release|Any CPU
{32BB29F6-9636-4FCB-A595-638599ACBC0C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{32BB29F6-9636-4FCB-A595-638599ACBC0C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{32BB29F6-9636-4FCB-A595-638599ACBC0C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{32BB29F6-9636-4FCB-A595-638599ACBC0C}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal

7
Project/Program.cs Normal file
View file

@ -0,0 +1,7 @@
namespace Project;
class Program {
static void Main(string[] args) {
Console.WriteLine("Hello, World!");
}
}

10
Project/Project.csproj Normal file
View file

@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

29
Tests/Tests.csproj Normal file
View file

@ -0,0 +1,29 @@
<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.13.0" />
<PackageReference Include="NUnit" Version="4.3.2" />
<PackageReference Include="NUnit3TestAdapter" Version="5.0.0" />
<PackageReference Include="NUnit.Analyzers" Version="4.7.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="6.0.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Project\Project.csproj" />
</ItemGroup>
</Project>

1
Tests/Usings.cs Normal file
View file

@ -0,0 +1 @@
global using NUnit.Framework;

7
global.json Normal file
View file

@ -0,0 +1,7 @@
{
"sdk": {
"version": "6.0.0",
"rollForward": "latestMinor",
"allowPrerelease": false
}
}