Skip to content

Upgrade to dot net7 #32

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
406 changes: 395 additions & 11 deletions .gitignore

Large diffs are not rendered by default.

Binary file not shown.
Empty file.
Binary file added .vs/EventSourcingCQRS/v17/.futdcache.v2
Binary file not shown.
Binary file added .vs/EventSourcingCQRS/v17/.wsuo
Binary file not shown.
Binary file added .vs/EventSourcingCQRS/v17/HierarchyCache.v1.txt
Binary file not shown.
Binary file added .vs/EventSourcingCQRS/v17/workspaceFileList.bin
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
3 changes: 3 additions & 0 deletions .vs/ProjectSettings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"CurrentProjectSetting": null
}
7 changes: 7 additions & 0 deletions .vs/VSWorkspaceState.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"ExpandedNodes": [
""
],
"SelectedNode": "\\SqlServerEventStore.sln",
"PreviewInSolutionExplorer": false
}
Binary file added .vs/slnx.sqlite
Binary file not shown.
72 changes: 72 additions & 0 deletions EventSourcingCQRS.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.3.32825.248
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{EF3C709C-758C-451D-8B6C-4222D1BE8EDF}"
ProjectSection(SolutionItems) = preProject
PublishNuget.ps1 = PublishNuget.ps1
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "EventStores", "EventStores", "{77CC485D-D260-45FC-A161-3DDF3A571C41}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EventSourcingCQRS", "src\EventSourcingCQRS\EventSourcingCQRS.csproj", "{B3DE1DEF-D1B1-4F24-8C4B-776F6ED8A5BB}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EventSourcingCQRS.EventStore.MongoDb", "src\EventSourcingCQRS.EventStore.MongoDb\EventSourcingCQRS.EventStore.MongoDb.csproj", "{B7131E9D-B08D-4C30-BE6B-A8AA5D7C597C}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EventSourcingCQRS.EventStore.SqlServer", "src\EventSourcingCQRS.EventStore.SqlServer\EventSourcingCQRS.EventStore.SqlServer.csproj", "{BEEBFC8E-91EC-4E24-8223-395C2302C1B3}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EventSourcingCQRS.EventStore.AzureTableStorage", "src\EventSourcingCQRS.EventStore.AzureTableStorage\EventSourcingCQRS.EventStore.AzureTableStorage.csproj", "{2F366796-98F0-482B-A5E2-080CF0C12E9D}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EventSourcingCQRS.EventStore.CosmosDb", "src\EventSourcingCQRS.EventStore.CosmosDb\EventSourcingCQRS.EventStore.CosmosDb.csproj", "{BB2CDCB3-8F06-46B4-920A-681F9A6BC5B5}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EventSourcingCQRS.EventStore.CosmosDb.UnitTests", "src\EventSourcingCQRS.EventStore.CosmosDb.UnitTests\EventSourcingCQRS.EventStore.CosmosDb.UnitTests.csproj", "{A3F2842F-3188-474D-8553-9FDD53D31AA8}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{B3DE1DEF-D1B1-4F24-8C4B-776F6ED8A5BB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B3DE1DEF-D1B1-4F24-8C4B-776F6ED8A5BB}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B3DE1DEF-D1B1-4F24-8C4B-776F6ED8A5BB}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B3DE1DEF-D1B1-4F24-8C4B-776F6ED8A5BB}.Release|Any CPU.Build.0 = Release|Any CPU
{B7131E9D-B08D-4C30-BE6B-A8AA5D7C597C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B7131E9D-B08D-4C30-BE6B-A8AA5D7C597C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B7131E9D-B08D-4C30-BE6B-A8AA5D7C597C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B7131E9D-B08D-4C30-BE6B-A8AA5D7C597C}.Release|Any CPU.Build.0 = Release|Any CPU
{BEEBFC8E-91EC-4E24-8223-395C2302C1B3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BEEBFC8E-91EC-4E24-8223-395C2302C1B3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BEEBFC8E-91EC-4E24-8223-395C2302C1B3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BEEBFC8E-91EC-4E24-8223-395C2302C1B3}.Release|Any CPU.Build.0 = Release|Any CPU
{2F366796-98F0-482B-A5E2-080CF0C12E9D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2F366796-98F0-482B-A5E2-080CF0C12E9D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2F366796-98F0-482B-A5E2-080CF0C12E9D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2F366796-98F0-482B-A5E2-080CF0C12E9D}.Release|Any CPU.Build.0 = Release|Any CPU
{BB2CDCB3-8F06-46B4-920A-681F9A6BC5B5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BB2CDCB3-8F06-46B4-920A-681F9A6BC5B5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BB2CDCB3-8F06-46B4-920A-681F9A6BC5B5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BB2CDCB3-8F06-46B4-920A-681F9A6BC5B5}.Release|Any CPU.Build.0 = Release|Any CPU
{A3F2842F-3188-474D-8553-9FDD53D31AA8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A3F2842F-3188-474D-8553-9FDD53D31AA8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A3F2842F-3188-474D-8553-9FDD53D31AA8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A3F2842F-3188-474D-8553-9FDD53D31AA8}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{B7131E9D-B08D-4C30-BE6B-A8AA5D7C597C} = {77CC485D-D260-45FC-A161-3DDF3A571C41}
{BEEBFC8E-91EC-4E24-8223-395C2302C1B3} = {77CC485D-D260-45FC-A161-3DDF3A571C41}
{2F366796-98F0-482B-A5E2-080CF0C12E9D} = {77CC485D-D260-45FC-A161-3DDF3A571C41}
{BB2CDCB3-8F06-46B4-920A-681F9A6BC5B5} = {77CC485D-D260-45FC-A161-3DDF3A571C41}
{A3F2842F-3188-474D-8553-9FDD53D31AA8} = {77CC485D-D260-45FC-A161-3DDF3A571C41}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {32C2010F-C26A-4E98-A269-71CB9EFEAE7A}
EndGlobalSection
GlobalSection(TestCaseManagementSettings) = postSolution
CategoryFile = Simple CQRS.vsmdi
EndGlobalSection
EndGlobal
26 changes: 26 additions & 0 deletions PublishNuget.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
&dotnet build

$folderPath = "C:\Repos\EventSourcingCQRS\src\EventSourcingCQRS\bin\Debug"
$latestFile = Get-ChildItem $folderPath | Sort-Object LastWriteTime -Descending | Select-Object -First 1
Write-Host "The most recently changed file is: $($latestFile.Name)"
.\nuget.exe add ($latestFile.FullName) -source \\z8\NugetPackages

$folderPath = "C:\Repos\EventSourcingCQRS\src\EventSourcingCQRS.EventStore.MongoDb\bin\Debug"
$latestFile = Get-ChildItem $folderPath | Sort-Object LastWriteTime -Descending | Select-Object -First 1
Write-Host "The most recently changed file is: $($latestFile.Name)"
.\nuget.exe add ($latestFile.FullName) -source \\z8\NugetPackages

$folderPath = "C:\Repos\EventSourcingCQRS\src\EventSourcingCQRS.EventStore.SqlServer\bin\Debug"
$latestFile = Get-ChildItem $folderPath | Sort-Object LastWriteTime -Descending | Select-Object -First 1
Write-Host "The most recently changed file is: $($latestFile.Name)"
.\nuget.exe add ($latestFile.FullName) -source \\z8\NugetPackages

$folderPath = "C:\Repos\EventSourcingCQRS\src\EventSourcingCQRS.EventStore.AzureTableStorage\bin\Debug"
$latestFile = Get-ChildItem $folderPath | Sort-Object LastWriteTime -Descending | Select-Object -First 1
Write-Host "The most recently changed file is: $($latestFile.Name)"
.\nuget.exe add ($latestFile.FullName) -source \\z8\NugetPackages

$folderPath = "C:\Repos\EventSourcingCQRS\src\EventSourcingCQRS.EventStore.CosmosDb\bin\Debug"
$latestFile = Get-ChildItem $folderPath | Sort-Object LastWriteTime -Descending | Select-Object -First 1
Write-Host "The most recently changed file is: $($latestFile.Name)"
.\nuget.exe add ($latestFile.FullName) -source \\z8\NugetPackages/
1 change: 1 addition & 0 deletions __PublishNuget.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nuget add C:\Repos\EventSourcingCQRS\src\EventSourcingCQRS\bin\Debug\EventSourcingCQRS.Beta.2022.12.14.2249.nupkg -source \\z8\NugetPackages
Binary file removed lib/AutoMoq.dll
Binary file not shown.
Binary file removed lib/Machine.Specifications.dll
Binary file not shown.
7 changes: 0 additions & 7 deletions lib/Machine.Specifications.dll.VisualState.xml

This file was deleted.

Binary file removed lib/Microsoft.Practices.ServiceLocation.dll
Binary file not shown.
Binary file removed lib/Microsoft.Practices.Unity.dll
Binary file not shown.
Binary file removed lib/MongoDB.GridFS.dll
Binary file not shown.
Binary file removed lib/MongoDB.dll
Binary file not shown.
Binary file removed lib/NServiceBus.Core.dll
Binary file not shown.
Binary file removed lib/NServiceBus.Host.exe
Binary file not shown.
Binary file removed lib/NServiceBus.dll
Binary file not shown.
Binary file removed lib/Rhino.ServiceBus.dll
Binary file not shown.
Binary file removed lib/ServiceStack.Text.dll
Binary file not shown.
Binary file removed lib/Should.dll
Binary file not shown.
Binary file removed lib/Simple.Data.Ado.dll
Binary file not shown.
Binary file removed lib/Simple.Data.SqlServer.dll
Binary file not shown.
Binary file removed lib/Simple.Data.dll
Binary file not shown.
Binary file removed lib/TechTalk.SpecFlow.dll
Binary file not shown.
Binary file removed lib/log4net.dll
Binary file not shown.
Binary file removed lib/nunit.framework.dll
Binary file not shown.
Binary file added nuget.exe
Binary file not shown.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading