Skip to content

Commit

Permalink
Default .NET solution
Browse files Browse the repository at this point in the history
  • Loading branch information
naydevops committed Sep 26, 2024
1 parent b41facb commit d47aa36
Show file tree
Hide file tree
Showing 6 changed files with 131 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
*.swp
*.*~
project.lock.json
.DS_Store
*.pyc
nupkg/

# Visual Studio Code
.vscode/

# Rider
.idea/

# Visual Studio
.vs/

# Fleet
.fleet/

# Code Rush
.cr/

# User-specific files
*.suo
*.user
*.userosscache
*.sln.docstates

# Build results
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
x64/
x86/
build/
bld/
[Bb]in/
[Oo]bj/
[Oo]ut/
msbuild.log
msbuild.err
msbuild.wrn
37 changes: 37 additions & 0 deletions Wizard.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@

Microsoft Visual Studio Solution File, Format Version 12.00
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{FBB0D7FF-CBD0-48FC-A7A8-567EB0B918AF}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{F4703376-33C0-4EF7-8B9C-7D419DF217A6}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Wizard.Application", "src\Wizard.Application\Wizard.Application.csproj", "{9792B864-AB20-4E4B-85CF-F823354E2090}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Wizard.ConsoleInterface", "src\Wizard.ConsoleInterface\Wizard.ConsoleInterface.csproj", "{636B0463-1FC7-4B30-AF70-3331FABDA5F6}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Wizard.Application.UnitTests", "tests\Wizard.Application.UnitTests\Wizard.Application.UnitTests.csproj", "{0549D722-EE39-4E11-9E79-3A676B12F82B}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{9792B864-AB20-4E4B-85CF-F823354E2090} = {FBB0D7FF-CBD0-48FC-A7A8-567EB0B918AF}
{636B0463-1FC7-4B30-AF70-3331FABDA5F6} = {FBB0D7FF-CBD0-48FC-A7A8-567EB0B918AF}
{0549D722-EE39-4E11-9E79-3A676B12F82B} = {F4703376-33C0-4EF7-8B9C-7D419DF217A6}
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{9792B864-AB20-4E4B-85CF-F823354E2090}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9792B864-AB20-4E4B-85CF-F823354E2090}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9792B864-AB20-4E4B-85CF-F823354E2090}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9792B864-AB20-4E4B-85CF-F823354E2090}.Release|Any CPU.Build.0 = Release|Any CPU
{636B0463-1FC7-4B30-AF70-3331FABDA5F6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{636B0463-1FC7-4B30-AF70-3331FABDA5F6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{636B0463-1FC7-4B30-AF70-3331FABDA5F6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{636B0463-1FC7-4B30-AF70-3331FABDA5F6}.Release|Any CPU.Build.0 = Release|Any CPU
{0549D722-EE39-4E11-9E79-3A676B12F82B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0549D722-EE39-4E11-9E79-3A676B12F82B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0549D722-EE39-4E11-9E79-3A676B12F82B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0549D722-EE39-4E11-9E79-3A676B12F82B}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
9 changes: 9 additions & 0 deletions src/Wizard.Application/Wizard.Application.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">

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

</Project>
1 change: 1 addition & 0 deletions src/Wizard.ConsoleInterface/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Console.WriteLine("Hello, World!");
14 changes: 14 additions & 0 deletions src/Wizard.ConsoleInterface/Wizard.ConsoleInterface.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\Wizard.Application\Wizard.Application.csproj" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<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="xunit" Version="2.5.3"/>
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.3"/>
</ItemGroup>

<ItemGroup>
<Using Include="Xunit"/>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\src\Wizard.Application\Wizard.Application.csproj" />
</ItemGroup>

</Project>

0 comments on commit d47aa36

Please sign in to comment.