Skip to content

Commit fea9de5

Browse files
committed
Removed Bunit from the sample projects namespace
1 parent 37f9b81 commit fea9de5

29 files changed

Lines changed: 83 additions & 64 deletions

sample/Directory.Build.props

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

sample/src/Components/DismissingEventArgs.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Text;
55
using System.Threading.Tasks;
66

7-
namespace Bunit.SampleApp.Components
7+
namespace SampleApp.Components
88
{
99
public class DismissingEventArgs
1010
{

sample/src/Components/ThemeInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Text;
55
using System.Threading.Tasks;
66

7-
namespace Bunit.SampleApp.Components
7+
namespace SampleApp.Components
88
{
99
public class ThemeInfo
1010
{

sample/src/Data/ITodoService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System.Collections.Generic;
22
using System.Threading.Tasks;
33

4-
namespace Bunit.SampleApp.Data
4+
namespace SampleApp.Data
55
{
66
public interface ITodoService
77
{

sample/src/Data/IWeatherForecastService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22
using System.Threading.Tasks;
33

4-
namespace Bunit.SampleApp.Data
4+
namespace SampleApp.Data
55
{
66
public interface IWeatherForecastService
77
{

sample/src/Data/Localizer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Threading.Tasks;
55
using Microsoft.AspNetCore.Components;
66

7-
namespace Bunit.SampleApp.Data
7+
namespace SampleApp.Data
88
{
99
public class Localizer
1010
{

sample/src/Data/Todo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace Bunit.SampleApp.Data
1+
namespace SampleApp.Data
22
{
33
public class Todo
44
{

sample/src/Data/TodoService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Text;
55
using System.Threading.Tasks;
66

7-
namespace Bunit.SampleApp.Data
7+
namespace SampleApp.Data
88
{
99
public class TodoService : ITodoService
1010
{

sample/src/Data/WeatherForecast.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System;
22

3-
namespace Bunit.SampleApp.Data
3+
namespace SampleApp.Data
44
{
55
public class WeatherForecast
66
{

sample/src/Data/WeatherForecastService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Linq;
33
using System.Threading.Tasks;
44

5-
namespace Bunit.SampleApp.Data
5+
namespace SampleApp.Data
66
{
77
public class WeatherForecastService : IWeatherForecastService
88
{

0 commit comments

Comments
 (0)