Skip to content

Commit 6f399d3

Browse files
Merge pull request #3 from SQL-MisterMagoo/preview-3
Preview 3 And New Features
2 parents 22dbcc5 + 6186df4 commit 6f399d3

File tree

82 files changed

+743
-460
lines changed

Some content is hidden

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

82 files changed

+743
-460
lines changed

BlazorEmbedContent.sln

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +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}"
1616
EndProject
17-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BlazorComponentSample", "BlazorComponentSample\BlazorComponentSample.csproj", "{0E5308C8-4453-44C6-93E2-434E02C5A834}"
17+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BlazorComponentSample", "samples\BlazorComponentSample\BlazorComponentSample.csproj", "{0E5308C8-4453-44C6-93E2-434E02C5A834}"
1818
EndProject
19-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RazorComponentsSample.Server", "RazorComponentsSample\RazorComponentsSample.Server\RazorComponentsSample.Server.csproj", "{321B4834-0D15-4752-945A-350FE4F3E187}"
19+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RazorComponentsSample.Server", "samples\RazorComponentsSample\RazorComponentsSample.Server\RazorComponentsSample.Server.csproj", "{321B4834-0D15-4752-945A-350FE4F3E187}"
2020
EndProject
21-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RazorComponentsSample.App", "RazorComponentsSample\RazorComponentsSample.App\RazorComponentsSample.App.csproj", "{AF8C09AB-74C0-4227-B008-D264891ECFE3}"
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}"
2224
EndProject
2325
Global
2426
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -42,14 +44,16 @@ Global
4244
{321B4834-0D15-4752-945A-350FE4F3E187}.Debug|Any CPU.Build.0 = Debug|Any CPU
4345
{321B4834-0D15-4752-945A-350FE4F3E187}.Release|Any CPU.ActiveCfg = Release|Any CPU
4446
{321B4834-0D15-4752-945A-350FE4F3E187}.Release|Any CPU.Build.0 = Release|Any CPU
45-
{AF8C09AB-74C0-4227-B008-D264891ECFE3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
46-
{AF8C09AB-74C0-4227-B008-D264891ECFE3}.Debug|Any CPU.Build.0 = Debug|Any CPU
47-
{AF8C09AB-74C0-4227-B008-D264891ECFE3}.Release|Any CPU.ActiveCfg = Release|Any CPU
48-
{AF8C09AB-74C0-4227-B008-D264891ECFE3}.Release|Any CPU.Build.0 = Release|Any CPU
4947
EndGlobalSection
5048
GlobalSection(SolutionProperties) = preSolution
5149
HideSolutionNode = FALSE
5250
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
5357
GlobalSection(ExtensibilityGlobals) = postSolution
5458
SolutionGuid = {DC049A56-A934-4817-8415-152E6BBBAA16}
5559
EndGlobalSection

BlazorEmbedContent/Pages/Index.cshtml

Lines changed: 0 additions & 14 deletions
This file was deleted.

BlazorEmbedContent/Pages/_ViewImports.cshtml

Lines changed: 0 additions & 5 deletions
This file was deleted.

BlazorEmbedContent/Shared/MainLayout.cshtml

Lines changed: 0 additions & 15 deletions
This file was deleted.

BlazorEmbedContent/_ViewImports.cshtml

Lines changed: 0 additions & 6 deletions
This file was deleted.

BlazorEmbedLibrary/EmbeddedContent.cs

Lines changed: 0 additions & 238 deletions
This file was deleted.

Directory.Build.props

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<Project>
22
<PropertyGroup>
3-
<BlazorVersion>0.8.0-preview-19104-04</BlazorVersion>
4-
<ReleaseVersion>0.1.0-beta-2</ReleaseVersion>
3+
<BlazorVersion>0.9.0-preview3-19154-02</BlazorVersion>
4+
<AspNetCoreVersion>3.0.0-preview3-19153-02</AspNetCoreVersion>
5+
<ReleaseVersion>0.1.0-beta-3</ReleaseVersion>
56
</PropertyGroup>
67
</Project>

0 commit comments

Comments
 (0)