-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
131 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Console.WriteLine("Hello, World!"); |
14 changes: 14 additions & 0 deletions
14
src/Wizard.ConsoleInterface/Wizard.ConsoleInterface.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
27 changes: 27 additions & 0 deletions
27
tests/Wizard.Application.UnitTests/Wizard.Application.UnitTests.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |