Skip to content

Commit

Permalink
Revert "Merge branch 'upstream/master' into 1484_ExcludeFromCoverageS…
Browse files Browse the repository at this point in the history
…ynthesizedNames"

This reverts commit 1b4fa5c, reversing
changes made to 2c3e0ad.
  • Loading branch information
David Mueller x. committed Oct 26, 2023
1 parent 1b4fa5c commit 7e410cc
Show file tree
Hide file tree
Showing 145 changed files with 11,467 additions and 12,368 deletions.
2 changes: 0 additions & 2 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ indent_style = space
indent_size = 4
trim_trailing_whitespace = true

file_header_template = Copyright (c) Toni Solarin-Sodara\nLicensed under the MIT license. See LICENSE file in the project root for full license information.

# XML project files
[*.{csproj,vbproj,vcxproj,vcxproj.filters,proj,projitems,shproj}]
indent_size = 2
Expand Down
8 changes: 0 additions & 8 deletions Documentation/Examples/.editorconfig

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
namespace ClassLibrary1
using System;

namespace ClassLibrary1
{
public class Class1
public class Class1
{
public int Method()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<ManagePackageVersionsCentrally>false</ManagePackageVersionsCentrally>
</PropertyGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="all" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<Project>

<!-- Deterministic build workaround -->
<Import Project="$(MSBuildThisFileDirectory)DeterministicBuild.targets" />
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<IsPackable>false</IsPackable>
<ManagePackageVersionsCentrally>false</ManagePackageVersionsCentrally>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
namespace ClassLibrary1
using System;

namespace ClassLibrary1
{
public class Class1
public class Class1
{
public int Method()
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
namespace ClassLibrary2
using System;

namespace ClassLibrary2
{
public class Class2
public class Class2
{
public int Method()
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
namespace ClassLibrary3
using System;

namespace ClassLibrary3
{
public class Class3
public class Class3
{
public int Method()
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
using Xunit;
using System;
using Xunit;

namespace XUnitTestProject1
{
public class UnitTest1
public class UnitTest1
{
[Fact]
public void Test1()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<IsPackable>false</IsPackable>
<ManagePackageVersionsCentrally>false</ManagePackageVersionsCentrally>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
using Xunit;
using System;
using Xunit;

namespace XUnitTestProject2
{
public class UnitTest2
public class UnitTest2
{
[Fact]
public void Test2()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<IsPackable>false</IsPackable>
<ManagePackageVersionsCentrally>false</ManagePackageVersionsCentrally>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
using Xunit;
using System;
using Xunit;

namespace XUnitTestProject3
{
public class UnitTest3
public class UnitTest3
{
[Fact]
public void Test3()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<IsPackable>false</IsPackable>
<ManagePackageVersionsCentrally>false</ManagePackageVersionsCentrally>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<ManagePackageVersionsCentrally>false</ManagePackageVersionsCentrally>
</PropertyGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
namespace ClassLibrary1
using System;

namespace ClassLibrary1
{
public class Class1
public class Class1
{
public int Method()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<ManagePackageVersionsCentrally>false</ManagePackageVersionsCentrally>
</PropertyGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
using Xunit;
using System;
using Xunit;

namespace XUnitTestProject1
{
public class UnitTest1
public class UnitTest1
{
[Fact]
public void Test1()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
<TargetFramework>net6.0</TargetFramework>
<IsPackable>false</IsPackable>
<ManagePackageVersionsCentrally>false</ManagePackageVersionsCentrally>
<RunSettingsFilePath>$(MSBuildThisFileDirectory).runsettings</RunSettingsFilePath>
</PropertyGroup>

<ItemGroup>
Expand Down
Loading

0 comments on commit 7e410cc

Please sign in to comment.