Skip to content
This repository was archived by the owner on May 12, 2026. It is now read-only.

Commit 1930eee

Browse files
Fix artifacts action file path and add solution files
1 parent a2c10a7 commit 1930eee

4 files changed

Lines changed: 25 additions & 3 deletions

File tree

.github/workflows/build-artifacts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
uses: ./.github/actions/setup-env
2323

2424
- name: Build Artifacts
25-
run: dotnet pack ./src/NG.Mediator/NG.Mediator.csproj -c Release -o "./artifacts"
25+
run: dotnet pack ./NG.Mediator/NG.Mediator.csproj -c Release -o "./artifacts"
2626

2727
- name: Artifacts
2828
uses: actions/upload-artifact@v4

NG.Mediator.sln

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,24 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NG.Mediator.Examples.Stashb
3636
EndProject
3737
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NG.Mediator", "NG.Mediator\NG.Mediator.csproj", "{943AB1A5-7061-4884-ADDD-026AE5425498}"
3838
EndProject
39+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".github", ".github", "{81E174CC-10E9-FDEC-9BF6-358A27C24580}"
40+
ProjectSection(SolutionItems) = preProject
41+
.github\dependabot.yml = .github\dependabot.yml
42+
EndProjectSection
43+
EndProject
44+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "actions", "actions", "{7814AB59-DF59-84D6-6B54-E4DFC353FC18}"
45+
EndProject
46+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "workflows", "workflows", "{2F23F7C9-BFEB-C327-698B-2C8A44EBB0A3}"
47+
ProjectSection(SolutionItems) = preProject
48+
.github\workflows\build-and-tests.yml = .github\workflows\build-and-tests.yml
49+
.github\workflows\build-artifacts.yml = .github\workflows\build-artifacts.yml
50+
EndProjectSection
51+
EndProject
52+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "setup-env", "setup-env", "{DBD377A0-E08E-B549-2B69-B75932D92EE6}"
53+
ProjectSection(SolutionItems) = preProject
54+
.github\actions\setup-env\action.yml = .github\actions\setup-env\action.yml
55+
EndProjectSection
56+
EndProject
3957
Global
4058
GlobalSection(SolutionConfigurationPlatforms) = preSolution
4159
Debug|Any CPU = Debug|Any CPU
@@ -106,6 +124,10 @@ Global
106124
{004D029A-43E7-47B0-BA74-D0A9F7FC7713} = {E372BF0B-90E8-4DC1-A332-F023095A3C2A}
107125
{7CEB57F2-B6DC-4A18-A040-D12555C3D32F} = {E372BF0B-90E8-4DC1-A332-F023095A3C2A}
108126
{F9148E20-5856-484C-8410-B515C6C56214} = {E372BF0B-90E8-4DC1-A332-F023095A3C2A}
127+
{81E174CC-10E9-FDEC-9BF6-358A27C24580} = {1E133765-6B4E-46C2-8C6C-7238E8EABA79}
128+
{7814AB59-DF59-84D6-6B54-E4DFC353FC18} = {81E174CC-10E9-FDEC-9BF6-358A27C24580}
129+
{2F23F7C9-BFEB-C327-698B-2C8A44EBB0A3} = {81E174CC-10E9-FDEC-9BF6-358A27C24580}
130+
{DBD377A0-E08E-B549-2B69-B75932D92EE6} = {7814AB59-DF59-84D6-6B54-E4DFC353FC18}
109131
EndGlobalSection
110132
GlobalSection(ExtensibilityGlobals) = postSolution
111133
SolutionGuid = {D58286E3-878B-4ACB-8E76-F61E708D4339}

NG.Mediator/NG.Mediator.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
</ItemGroup>
3232

3333
<ItemGroup>
34-
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
34+
<None Include="..\README.md" Pack="true" PackagePath="\" />
3535
</ItemGroup>
3636

3737
</Project>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ NG.Mediator
22
=======
33
![Build & Tests](https://github.com/CorruptComputer/NG.Mediator/workflows/build-and-tests/badge.svg)
44

5-
This project was forked from https://github.com/LuckyPennySoftware/MediatR at commit 3f5c3eca8db07e3791f638243bbb879ef847c09e, which is from before their license change. I will be keeping the same license as was there in this comment and have no plans to change that, this fork was made for my own personal use. There will be changes as I see fit, so this is probably not something you want to use.
5+
This project was forked from https://github.com/LuckyPennySoftware/MediatR at commit 3f5c3eca8db07e3791f638243bbb879ef847c09e, which is from before their license change. I will be keeping the same license as was there in this commit and have no plans to change that. This fork was made for my own personal use and there will be changes as I see fit, so this is probably not something you want to use.

0 commit comments

Comments
 (0)