Skip to content

Commit a89e999

Browse files
committed
add .editorconfig for examples
1 parent fbe2259 commit a89e999

File tree

12 files changed

+18
-35
lines changed

12 files changed

+18
-35
lines changed

Documentation/Examples/.editorconfig

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# top-most EditorConfig file
2+
# We don't want to import other EditorConfig files and we want
3+
# to ensure no rules are enabled for these asset source files.
4+
root = true
5+
6+
[*.cs]
7+
# Default severity for all analyzer diagnostics
8+
dotnet_analyzer_diagnostic.severity = none

Documentation/Examples/MSBuild/DeterministicBuild/ClassLibrary1/Class1.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
// Copyright (c) Toni Solarin-Sodara
2-
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3-
4-
namespace ClassLibrary1
1+
namespace ClassLibrary1
52
{
63
public class Class1
74
{

Documentation/Examples/MSBuild/MergeWith/ClassLibrary1/Class1.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
// Copyright (c) Toni Solarin-Sodara
2-
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3-
4-
namespace ClassLibrary1
1+
namespace ClassLibrary1
52
{
63
public class Class1
74
{

Documentation/Examples/MSBuild/MergeWith/ClassLibrary2/Class2.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
// Copyright (c) Toni Solarin-Sodara
2-
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3-
4-
namespace ClassLibrary2
1+
namespace ClassLibrary2
52
{
63
public class Class2
74
{

Documentation/Examples/MSBuild/MergeWith/ClassLibrary3/Class3.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
// Copyright (c) Toni Solarin-Sodara
2-
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3-
4-
namespace ClassLibrary3
1+
namespace ClassLibrary3
52
{
63
public class Class3
74
{

Documentation/Examples/MSBuild/MergeWith/XUnitTestProject1/UnitTest1.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
// Copyright (c) Toni Solarin-Sodara
2-
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3-
4-
using Xunit;
1+
using Xunit;
52

63
namespace XUnitTestProject1
74
{

Documentation/Examples/MSBuild/MergeWith/XUnitTestProject2/UnitTest2.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
// Copyright (c) Toni Solarin-Sodara
2-
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3-
4-
using Xunit;
1+
using Xunit;
52

63
namespace XUnitTestProject2
74
{

Documentation/Examples/MSBuild/MergeWith/XUnitTestProject3/UnitTest3.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
// Copyright (c) Toni Solarin-Sodara
2-
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3-
using Xunit;
1+
using Xunit;
42

53
namespace XUnitTestProject3
64
{

Documentation/Examples/VSTest/HelloWorld/ClassLibrary1/Class1.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
// Copyright (c) Toni Solarin-Sodara
2-
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3-
4-
namespace ClassLibrary1
1+
namespace ClassLibrary1
52
{
63
public class Class1
74
{

Documentation/Examples/VSTest/HelloWorld/XUnitTestProject1/UnitTest1.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
// Copyright (c) Toni Solarin-Sodara
2-
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3-
4-
using Xunit;
1+
using Xunit;
52

63
namespace XUnitTestProject1
74
{

Documentation/Examples/VSTest/HelloWorld/XUnitTestProject1/XUnitTestProject1.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<TargetFramework>net6.0</TargetFramework>
55
<IsPackable>false</IsPackable>
66
<ManagePackageVersionsCentrally>false</ManagePackageVersionsCentrally>
7+
<RunSettingsFilePath>$(MSBuildThisFileDirectory).runsettings</RunSettingsFilePath>
78
</PropertyGroup>
89

910
<ItemGroup>

0 commit comments

Comments
 (0)