Skip to content

Commit

Permalink
Create a class library project with xUnit testing project
Browse files Browse the repository at this point in the history
  • Loading branch information
Maometos committed Jun 6, 2024
1 parent 2ec6f02 commit ef0e338
Show file tree
Hide file tree
Showing 4 changed files with 64 additions and 1 deletion.
23 changes: 23 additions & 0 deletions Dispatcher.Test/Dispatcher.Test.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<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>

</Project>
31 changes: 31 additions & 0 deletions Dispatcher.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.9.34728.123
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Dispatcher", "Dispatcher\Dispatcher.csproj", "{0E5BBD16-2BB0-4C57-BC47-63334294DD60}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Dispatcher.Test", "Dispatcher.Test\Dispatcher.Test.csproj", "{19021087-63E2-4EF2-89C5-B3A8034E3402}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{0E5BBD16-2BB0-4C57-BC47-63334294DD60}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0E5BBD16-2BB0-4C57-BC47-63334294DD60}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0E5BBD16-2BB0-4C57-BC47-63334294DD60}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0E5BBD16-2BB0-4C57-BC47-63334294DD60}.Release|Any CPU.Build.0 = Release|Any CPU
{19021087-63E2-4EF2-89C5-B3A8034E3402}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{19021087-63E2-4EF2-89C5-B3A8034E3402}.Debug|Any CPU.Build.0 = Debug|Any CPU
{19021087-63E2-4EF2-89C5-B3A8034E3402}.Release|Any CPU.ActiveCfg = Release|Any CPU
{19021087-63E2-4EF2-89C5-B3A8034E3402}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {D40F8BDF-6111-4D9B-8560-3EB672F41CF4}
EndGlobalSection
EndGlobal
9 changes: 9 additions & 0 deletions Dispatcher/Dispatcher.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>
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# EvnetDispatcher
# Evnet Dispatcher
Event driven system for CQRS and event sourcing

0 comments on commit ef0e338

Please sign in to comment.