Skip to content

Commit bf7701b

Browse files
Re-structuring repo
1 parent 0531520 commit bf7701b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+17
-7
lines changed

BlazorEmbedContent.sln

+15-5
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,24 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 16
44
VisualStudioVersion = 16.0.28621.142
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BlazorEmbedContent", "BlazorEmbedContent\BlazorEmbedContent.csproj", "{C8941EE2-3131-442A-8CD4-8E3D8F05E909}"
7-
EndProject
86
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{84E71A33-28B5-485E-81CD-625ED1A95A24}"
97
ProjectSection(SolutionItems) = preProject
108
Directory.Build.props = Directory.Build.props
119
LICENSE = LICENSE
1210
README.md = README.md
1311
EndProjectSection
1412
EndProject
15-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BlazorEmbedLibrary", "BlazorEmbedLibrary\BlazorEmbedLibrary.csproj", "{2233FEFD-906A-48BA-B449-E1206CBA7068}"
13+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BlazorEmbedLibrary", "src\BlazorEmbedLibrary\BlazorEmbedLibrary.csproj", "{2233FEFD-906A-48BA-B449-E1206CBA7068}"
14+
EndProject
15+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BlazorEmbedContent", "samples\BlazorEmbedContent\BlazorEmbedContent.csproj", "{C8941EE2-3131-442A-8CD4-8E3D8F05E909}"
16+
EndProject
17+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BlazorComponentSample", "samples\BlazorComponentSample\BlazorComponentSample.csproj", "{0E5308C8-4453-44C6-93E2-434E02C5A834}"
1618
EndProject
17-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BlazorComponentSample", "BlazorComponentSample\BlazorComponentSample.csproj", "{0E5308C8-4453-44C6-93E2-434E02C5A834}"
19+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RazorComponentsSample.Server", "samples\RazorComponentsSample\RazorComponentsSample.Server\RazorComponentsSample.Server.csproj", "{321B4834-0D15-4752-945A-350FE4F3E187}"
1820
EndProject
19-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RazorComponentsSample.Server", "RazorComponentsSample\RazorComponentsSample.Server\RazorComponentsSample.Server.csproj", "{321B4834-0D15-4752-945A-350FE4F3E187}"
21+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{9463F8BD-A1F6-446A-9CE5-22BC6CF45F1D}"
22+
EndProject
23+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "samples", "samples", "{F598DD43-93FF-45F7-B972-FA4E3E00D39A}"
2024
EndProject
2125
Global
2226
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -44,6 +48,12 @@ Global
4448
GlobalSection(SolutionProperties) = preSolution
4549
HideSolutionNode = FALSE
4650
EndGlobalSection
51+
GlobalSection(NestedProjects) = preSolution
52+
{C8941EE2-3131-442A-8CD4-8E3D8F05E909} = {F598DD43-93FF-45F7-B972-FA4E3E00D39A}
53+
{2233FEFD-906A-48BA-B449-E1206CBA7068} = {9463F8BD-A1F6-446A-9CE5-22BC6CF45F1D}
54+
{0E5308C8-4453-44C6-93E2-434E02C5A834} = {F598DD43-93FF-45F7-B972-FA4E3E00D39A}
55+
{321B4834-0D15-4752-945A-350FE4F3E187} = {F598DD43-93FF-45F7-B972-FA4E3E00D39A}
56+
EndGlobalSection
4757
GlobalSection(ExtensibilityGlobals) = postSolution
4858
SolutionGuid = {DC049A56-A934-4817-8415-152E6BBBAA16}
4959
EndGlobalSection
File renamed without changes.

BlazorEmbedContent/BlazorEmbedContent.csproj samples/BlazorEmbedContent/BlazorEmbedContent.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
</ItemGroup>
1616

1717
<ItemGroup>
18+
<ProjectReference Include="..\..\src\BlazorEmbedLibrary\BlazorEmbedLibrary.csproj" />
1819
<ProjectReference Include="..\BlazorComponentSample\BlazorComponentSample.csproj" />
19-
<ProjectReference Include="..\BlazorEmbedLibrary\BlazorEmbedLibrary.csproj" />
2020
</ItemGroup>
2121

2222
</Project>
File renamed without changes.
File renamed without changes.

RazorComponentsSample/RazorComponentsSample.Server/RazorComponentsSample.Server.csproj samples/RazorComponentsSample/RazorComponentsSample.Server/RazorComponentsSample.Server.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
</ItemGroup>
1515

1616
<ItemGroup>
17+
<ProjectReference Include="..\..\..\src\BlazorEmbedLibrary\BlazorEmbedLibrary.csproj" />
1718
<ProjectReference Include="..\..\BlazorComponentSample\BlazorComponentSample.csproj" />
18-
<ProjectReference Include="..\..\BlazorEmbedLibrary\BlazorEmbedLibrary.csproj" />
1919
</ItemGroup>
2020

2121
<ItemGroup>

0 commit comments

Comments
 (0)