Skip to content

Commit

Permalink
Move to src/test folders
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobjmarks committed May 8, 2024
1 parent 4756e06 commit b4e28d5
Show file tree
Hide file tree
Showing 78 changed files with 45 additions and 33 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
env:
SNAPSHOOTER_STRICT_MODE: true
- name: Publish
run: dotnet publish Client -o out
run: dotnet publish src/Client -o out
- name: Upload Pages Artifact
uses: actions/upload-pages-artifact@v3
with:
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Build
run: dotnet build Server.Functions -c Release -o out
run: dotnet build src/Server.Functions -c Release -o out
- name: Upload build artifact
uses: actions/[email protected]
with:
Expand Down
72 changes: 42 additions & 30 deletions dotnet-qs.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,21 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31903.59
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Client", "Client\Client.csproj", "{C22773FB-10FF-403B-ACF5-C7675B3CDA98}"
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{E200869F-7543-42DC-B738-41DF45D5D80F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Server.Core", "Server.Core\Server.Core.csproj", "{00E6FE07-ECA1-48D2-BA83-3F75C4D65748}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Client", "src\Client\Client.csproj", "{13B84404-678C-49BF-80A1-CC461B527B46}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Server.Functions", "Server.Functions\Server.Functions.csproj", "{1612512C-7574-4267-BECE-93FEAEF5A78F}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Server.Core", "src\Server.Core\Server.Core.csproj", "{62612C05-165E-4CED-A430-7F494E67FCB0}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Shared", "Shared\Shared.csproj", "{8F0ADB8C-D238-4571-BF4E-8DB76E4018A8}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Server.Core.SourceGenerators", "src\Server.Core.SourceGenerators\Server.Core.SourceGenerators.csproj", "{9001A34D-B4F0-49DE-8FCC-59A3C1632C4E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Server.Core.Tests", "Server.Core.Tests\Server.Core.Tests.csproj", "{5A856409-9FA3-4C23-B65B-3BCA7275EBC1}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Server.Functions", "src\Server.Functions\Server.Functions.csproj", "{3E2A85E5-F2B0-42FB-B64D-9949367BE4D9}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Server.Core.SourceGenerators", "Server.Core.SourceGenerators\Server.Core.SourceGenerators.csproj", "{2B7D08BF-781C-421B-9C9A-E5B03F606A1A}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Shared", "src\Shared\Shared.csproj", "{504AC78E-F35B-4372-829D-68A69666AD41}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{AE814F9B-4866-4BF4-901C-7C13A3A289E8}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Server.Core.Tests", "test\Server.Core.Tests\Server.Core.Tests.csproj", "{9E087F40-9D38-401C-92E3-08372A2A54A0}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand All @@ -24,29 +28,37 @@ Global
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{C22773FB-10FF-403B-ACF5-C7675B3CDA98}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C22773FB-10FF-403B-ACF5-C7675B3CDA98}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C22773FB-10FF-403B-ACF5-C7675B3CDA98}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C22773FB-10FF-403B-ACF5-C7675B3CDA98}.Release|Any CPU.Build.0 = Release|Any CPU
{00E6FE07-ECA1-48D2-BA83-3F75C4D65748}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{00E6FE07-ECA1-48D2-BA83-3F75C4D65748}.Debug|Any CPU.Build.0 = Debug|Any CPU
{00E6FE07-ECA1-48D2-BA83-3F75C4D65748}.Release|Any CPU.ActiveCfg = Release|Any CPU
{00E6FE07-ECA1-48D2-BA83-3F75C4D65748}.Release|Any CPU.Build.0 = Release|Any CPU
{1612512C-7574-4267-BECE-93FEAEF5A78F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1612512C-7574-4267-BECE-93FEAEF5A78F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1612512C-7574-4267-BECE-93FEAEF5A78F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1612512C-7574-4267-BECE-93FEAEF5A78F}.Release|Any CPU.Build.0 = Release|Any CPU
{8F0ADB8C-D238-4571-BF4E-8DB76E4018A8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8F0ADB8C-D238-4571-BF4E-8DB76E4018A8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8F0ADB8C-D238-4571-BF4E-8DB76E4018A8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8F0ADB8C-D238-4571-BF4E-8DB76E4018A8}.Release|Any CPU.Build.0 = Release|Any CPU
{5A856409-9FA3-4C23-B65B-3BCA7275EBC1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5A856409-9FA3-4C23-B65B-3BCA7275EBC1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5A856409-9FA3-4C23-B65B-3BCA7275EBC1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5A856409-9FA3-4C23-B65B-3BCA7275EBC1}.Release|Any CPU.Build.0 = Release|Any CPU
{2B7D08BF-781C-421B-9C9A-E5B03F606A1A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2B7D08BF-781C-421B-9C9A-E5B03F606A1A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2B7D08BF-781C-421B-9C9A-E5B03F606A1A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2B7D08BF-781C-421B-9C9A-E5B03F606A1A}.Release|Any CPU.Build.0 = Release|Any CPU
{13B84404-678C-49BF-80A1-CC461B527B46}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{13B84404-678C-49BF-80A1-CC461B527B46}.Debug|Any CPU.Build.0 = Debug|Any CPU
{13B84404-678C-49BF-80A1-CC461B527B46}.Release|Any CPU.ActiveCfg = Release|Any CPU
{13B84404-678C-49BF-80A1-CC461B527B46}.Release|Any CPU.Build.0 = Release|Any CPU
{62612C05-165E-4CED-A430-7F494E67FCB0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{62612C05-165E-4CED-A430-7F494E67FCB0}.Debug|Any CPU.Build.0 = Debug|Any CPU
{62612C05-165E-4CED-A430-7F494E67FCB0}.Release|Any CPU.ActiveCfg = Release|Any CPU
{62612C05-165E-4CED-A430-7F494E67FCB0}.Release|Any CPU.Build.0 = Release|Any CPU
{9001A34D-B4F0-49DE-8FCC-59A3C1632C4E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9001A34D-B4F0-49DE-8FCC-59A3C1632C4E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9001A34D-B4F0-49DE-8FCC-59A3C1632C4E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9001A34D-B4F0-49DE-8FCC-59A3C1632C4E}.Release|Any CPU.Build.0 = Release|Any CPU
{3E2A85E5-F2B0-42FB-B64D-9949367BE4D9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3E2A85E5-F2B0-42FB-B64D-9949367BE4D9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3E2A85E5-F2B0-42FB-B64D-9949367BE4D9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3E2A85E5-F2B0-42FB-B64D-9949367BE4D9}.Release|Any CPU.Build.0 = Release|Any CPU
{504AC78E-F35B-4372-829D-68A69666AD41}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{504AC78E-F35B-4372-829D-68A69666AD41}.Debug|Any CPU.Build.0 = Debug|Any CPU
{504AC78E-F35B-4372-829D-68A69666AD41}.Release|Any CPU.ActiveCfg = Release|Any CPU
{504AC78E-F35B-4372-829D-68A69666AD41}.Release|Any CPU.Build.0 = Release|Any CPU
{9E087F40-9D38-401C-92E3-08372A2A54A0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9E087F40-9D38-401C-92E3-08372A2A54A0}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9E087F40-9D38-401C-92E3-08372A2A54A0}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9E087F40-9D38-401C-92E3-08372A2A54A0}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{13B84404-678C-49BF-80A1-CC461B527B46} = {E200869F-7543-42DC-B738-41DF45D5D80F}
{62612C05-165E-4CED-A430-7F494E67FCB0} = {E200869F-7543-42DC-B738-41DF45D5D80F}
{9001A34D-B4F0-49DE-8FCC-59A3C1632C4E} = {E200869F-7543-42DC-B738-41DF45D5D80F}
{3E2A85E5-F2B0-42FB-B64D-9949367BE4D9} = {E200869F-7543-42DC-B738-41DF45D5D80F}
{504AC78E-F35B-4372-829D-68A69666AD41} = {E200869F-7543-42DC-B738-41DF45D5D80F}
{9E087F40-9D38-401C-92E3-08372A2A54A0} = {AE814F9B-4866-4BF4-901C-7C13A3A289E8}
EndGlobalSection
EndGlobal
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Server.Core\Server.Core.csproj" />
<ProjectReference Include="..\..\src\Server.Core\Server.Core.csproj" />
</ItemGroup>

</Project>

0 comments on commit b4e28d5

Please sign in to comment.