-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleanup/modernize clean architecture and ASP.NET Core samples, ignore…
… certain paths and file for build trigger
- Loading branch information
1 parent
d5b2536
commit 12f2102
Showing
46 changed files
with
241 additions
and
296 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 0 additions & 21 deletions
21
samples/ASPNET_CleanArchitecture/AspNetSample.Api/AspNetSample.Api.csproj
This file was deleted.
Oops, something went wrong.
42 changes: 0 additions & 42 deletions
42
samples/ASPNET_CleanArchitecture/AspNetSample.Api/Controllers/TodoItemsController.cs
This file was deleted.
Oops, something went wrong.
27 changes: 0 additions & 27 deletions
27
samples/ASPNET_CleanArchitecture/AspNetSample.Api/Program.cs
This file was deleted.
Oops, something went wrong.
60 changes: 0 additions & 60 deletions
60
samples/ASPNET_CleanArchitecture/AspNetSample.Api/Startup.cs
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
samples/ASPNET_CleanArchitecture/AspNetSample.Api/appsettings.Development.json
This file was deleted.
Oops, something went wrong.
18 changes: 0 additions & 18 deletions
18
samples/ASPNET_CleanArchitecture/AspNetSample.Application/AspNetSample.Application.csproj
This file was deleted.
Oops, something went wrong.
19 changes: 0 additions & 19 deletions
19
samples/ASPNET_CleanArchitecture/AspNetSample.Application/Todos/AddTodoItem.cs
This file was deleted.
Oops, something went wrong.
12 changes: 0 additions & 12 deletions
12
samples/ASPNET_CleanArchitecture/AspNetSample.Application/Todos/AddTodoItemValidator.cs
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
samples/ASPNET_CleanArchitecture/AspNetSample.Application/Todos/GetTodoItems.cs
This file was deleted.
Oops, something went wrong.
23 changes: 0 additions & 23 deletions
23
samples/ASPNET_CleanArchitecture/AspNetSample.Application/Todos/TodoItemCommandHandler.cs
This file was deleted.
Oops, something went wrong.
3 changes: 0 additions & 3 deletions
3
samples/ASPNET_CleanArchitecture/AspNetSample.Application/Todos/TodoItemDto.cs
This file was deleted.
Oops, something went wrong.
20 changes: 0 additions & 20 deletions
20
samples/ASPNET_CleanArchitecture/AspNetSample.Application/Todos/TodoItemQueryHandler.cs
This file was deleted.
Oops, something went wrong.
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
.../Controllers/WeatherForecastController.cs → .../Controllers/WeatherForecastController.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...T/WeatherForecasts/GetWeatherForecasts.cs → ...e/WeatherForecasts/GetWeatherForecasts.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...SPNET/WeatherForecasts/WeatherForecast.cs → ..._Core/WeatherForecasts/WeatherForecast.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
namespace ASPNET | ||
namespace ASPNETCore | ||
{ | ||
public class WeatherForecast | ||
{ | ||
|
File renamed without changes.
File renamed without changes.
20 changes: 20 additions & 0 deletions
20
samples/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Api/AspNetCoreSample.Api.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<Project Sdk="Microsoft.NET.Sdk.Web"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<Nullable>enable</Nullable> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="FluentValidation.AspNetCore" Version="11.2.2" /> | ||
<PackageReference Include="Riok.Mapperly" Version="2.6.0" /> | ||
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\AspNetCoreSample.Application\AspNetCoreSample.Application.csproj" /> | ||
<ProjectReference Include="..\AspNetCoreSample.Infrastructure\AspNetCoreSample.Infrastructure.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |
Oops, something went wrong.