Skip to content

Commit 28f882c

Browse files
committed
Merge branch 'dev'
2 parents 138cff3 + c9bf353 commit 28f882c

File tree

156 files changed

+7693
-1125
lines changed

Some content is hidden

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

156 files changed

+7693
-1125
lines changed

.editorconfig

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[*.cs]
2+
3+
# CA1822: Mark members as static
4+
dotnet_diagnostic.CA1822.severity = suggestion

Directory.Build.props

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
<Project>
2-
<PropertyGroup>
3-
<AspNetCoreVersion>3.0.0</AspNetCoreVersion>
4-
</PropertyGroup>
5-
</Project>
2+
<PropertyGroup>
3+
<LangVersion>8.0</LangVersion>
4+
<Nullable>enable</Nullable>
5+
<WarningsAsErrors>CS8600;CS8602;CS8603;CS8625</WarningsAsErrors>
6+
</PropertyGroup>
7+
8+
<ItemGroup>
9+
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.8">
10+
<PrivateAssets>all</PrivateAssets>
11+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
12+
</PackageReference>
13+
</ItemGroup>
14+
15+
</Project>

Razor.Components.Testing.Library.sln

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ VisualStudioVersion = 16.0.29123.89
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{A5D7B605-02D8-468C-9BDF-864CF93B12F9}"
77
ProjectSection(SolutionItems) = preProject
8+
.editorconfig = .editorconfig
89
Directory.Build.props = Directory.Build.props
910
LICENSE = LICENSE
1011
README.md = README.md
@@ -18,6 +19,12 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Egil.RazorComponents.Testin
1819
EndProject
1920
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Egil.RazorComponents.Testing.Library.Tests", "tests\Egil.RazorComponents.Testing.Library.Tests.csproj", "{04E0142A-33CC-4E30-B903-F1370D94AD8C}"
2021
EndProject
22+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "sample", "sample", "{26D90CB9-AF66-4F42-A16E-39D2CF69C8FB}"
23+
EndProject
24+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Egil.RazorComponents.Testing.Library.SampleApp", "sample\src\Egil.RazorComponents.Testing.Library.SampleApp.csproj", "{D1FE0F2A-D856-417E-A1FD-4ECE9C64D3AE}"
25+
EndProject
26+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Egil.RazorComponents.Testing.Library.SampleApp.Tests", "sample\tests\Egil.RazorComponents.Testing.Library.SampleApp.Tests.csproj", "{A7B05744-AA61-4F8E-8173-5DE812A4A745}"
27+
EndProject
2128
Global
2229
GlobalSection(SolutionConfigurationPlatforms) = preSolution
2330
Debug|Any CPU = Debug|Any CPU
@@ -32,13 +39,23 @@ Global
3239
{04E0142A-33CC-4E30-B903-F1370D94AD8C}.Debug|Any CPU.Build.0 = Debug|Any CPU
3340
{04E0142A-33CC-4E30-B903-F1370D94AD8C}.Release|Any CPU.ActiveCfg = Release|Any CPU
3441
{04E0142A-33CC-4E30-B903-F1370D94AD8C}.Release|Any CPU.Build.0 = Release|Any CPU
42+
{D1FE0F2A-D856-417E-A1FD-4ECE9C64D3AE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
43+
{D1FE0F2A-D856-417E-A1FD-4ECE9C64D3AE}.Debug|Any CPU.Build.0 = Debug|Any CPU
44+
{D1FE0F2A-D856-417E-A1FD-4ECE9C64D3AE}.Release|Any CPU.ActiveCfg = Release|Any CPU
45+
{D1FE0F2A-D856-417E-A1FD-4ECE9C64D3AE}.Release|Any CPU.Build.0 = Release|Any CPU
46+
{A7B05744-AA61-4F8E-8173-5DE812A4A745}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
47+
{A7B05744-AA61-4F8E-8173-5DE812A4A745}.Debug|Any CPU.Build.0 = Debug|Any CPU
48+
{A7B05744-AA61-4F8E-8173-5DE812A4A745}.Release|Any CPU.ActiveCfg = Release|Any CPU
49+
{A7B05744-AA61-4F8E-8173-5DE812A4A745}.Release|Any CPU.Build.0 = Release|Any CPU
3550
EndGlobalSection
3651
GlobalSection(SolutionProperties) = preSolution
3752
HideSolutionNode = FALSE
3853
EndGlobalSection
3954
GlobalSection(NestedProjects) = preSolution
4055
{AA96790B-67C9-4141-ACDB-037C8DC092EC} = {E006E9A4-F554-46DF-838F-812956521F64}
4156
{04E0142A-33CC-4E30-B903-F1370D94AD8C} = {C929375E-BD70-4B78-88C1-BDD1623C3365}
57+
{D1FE0F2A-D856-417E-A1FD-4ECE9C64D3AE} = {26D90CB9-AF66-4F42-A16E-39D2CF69C8FB}
58+
{A7B05744-AA61-4F8E-8173-5DE812A4A745} = {26D90CB9-AF66-4F42-A16E-39D2CF69C8FB}
4259
EndGlobalSection
4360
GlobalSection(ExtensibilityGlobals) = postSolution
4461
SolutionGuid = {24106918-1C86-4769-BDA6-9C80E64CD260}

sample/RazorComponentLib/Alert.razor

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

sample/RazorComponentLib/RazorComponentLib.csproj

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

sample/RazorComponentLib/_Imports.razor

Lines changed: 0 additions & 1 deletion
This file was deleted.

sample/RazorComponentLibTests/AlertTests.razor

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

sample/RazorComponentLibTests/RazorComponentLibTests.csproj

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

sample/RazorComponentLibTests/_Imports.razor

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

sample/Testing-Sample.sln

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

0 commit comments

Comments
 (0)