Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,8 @@ temp/

# Editor directories and files
.vscode/*
!.vscode/launch.json
!.vscode/tasks.json
!.vscode/extensions.json
.idea
.DS_Store
Expand Down
68 changes: 68 additions & 0 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
<Project>
<PropertyGroup>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
</PropertyGroup>

<ItemGroup>
<!-- Azure -->
<PackageVersion Include="Azure.Data.Tables" Version="12.11.0" />
<PackageVersion Include="Azure.Identity" Version="1.14.1" />
<PackageVersion Include="Azure.Security.KeyVault.Secrets" Version="4.8.0" />
<PackageVersion Include="Azure.Extensions.AspNetCore.Configuration.Secrets" Version="1.3.2" />

<!-- Application Insights & Telemetry -->
<PackageVersion Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.23.0" />
<PackageVersion Include="OpenTelemetry" Version="1.11.1" />
<PackageVersion Include="OpenTelemetry.Extensions.Hosting" Version="1.11.1" />
<PackageVersion Include="OpenTelemetry.Instrumentation.AspNetCore" Version="1.11.1" />
<PackageVersion Include="OpenTelemetry.Instrumentation.Http" Version="1.11.1" />
<PackageVersion Include="OpenTelemetry.Instrumentation.Runtime" Version="1.11.1" />
<PackageVersion Include="OpenTelemetry.Exporter.OpenTelemetryProtocol" Version="1.11.1" />

<!-- Logging -->
<PackageVersion Include="Serilog" Version="4.2.0" />
<PackageVersion Include="Serilog.AspNetCore" Version="9.0.0" />
<PackageVersion Include="Serilog.Formatting.Compact" Version="3.0.0" />
<PackageVersion Include="Serilog.Sinks.Console" Version="6.0.0" />
<PackageVersion Include="Serilog.Sinks.File" Version="7.0.0" />
<PackageVersion Include="Serilog.Settings.Configuration" Version="9.0.0" />

<!-- ASP.NET Core -->
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.0" />
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="10.0.0" />
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="10.0.0" />
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="10.0.0" />
<PackageVersion Include="Microsoft.Extensions.Diagnostics.HealthChecks" Version="10.0.0" />
<PackageVersion Include="Microsoft.Extensions.Http" Version="10.0.0" />
<PackageVersion Include="Microsoft.Extensions.Configuration" Version="10.0.0" />
<PackageVersion Include="Microsoft.Extensions.Logging" Version="10.0.0" />

<!-- Swagger/OpenAPI -->
<PackageVersion Include="Swashbuckle.AspNetCore" Version="7.2.0" />

<!-- CQRS/MediatR -->
<PackageVersion Include="MediatR" Version="12.4.1" />

<!-- Validation -->
<PackageVersion Include="FluentValidation" Version="11.11.0" />
<PackageVersion Include="FluentValidation.DependencyInjectionExtensions" Version="11.11.0" />

<!-- UI Components -->
<PackageVersion Include="Radzen.Blazor" Version="8.1.5" />
<PackageVersion Include="ChartJs.Blazor" Version="1.1.0" />

<!-- Testing -->
<PackageVersion Include="xunit" Version="2.9.3" />
<PackageVersion Include="xunit.runner.visualstudio" Version="3.1.5" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="18.0.0" />
<PackageVersion Include="Moq" Version="4.20.72" />
<PackageVersion Include="FluentAssertions" Version="8.8.0" />
<PackageVersion Include="coverlet.collector" Version="6.0.4" />
<PackageVersion Include="bunit" Version="1.34.0" />
<PackageVersion Include="Microsoft.Playwright" Version="1.49.0" />

<!-- Code Coverage -->
<PackageVersion Include="Microsoft.CodeCoverage" Version="17.12.0" />
</ItemGroup>
</Project>
36 changes: 0 additions & 36 deletions PoFastType.Api/PoFastType.Api.csproj

This file was deleted.

27 changes: 0 additions & 27 deletions PoFastType.Api/appsettings.Production.json

This file was deleted.

30 changes: 0 additions & 30 deletions PoFastType.Api/appsettings.json

This file was deleted.

40 changes: 0 additions & 40 deletions PoFastType.Tests/PoFastType.Tests.csproj

This file was deleted.

8 changes: 4 additions & 4 deletions PoFastType.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31903.59
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PoFastType.Api", "PoFastType.Api\PoFastType.Api.csproj", "{FBD15D2B-0C27-4D6C-8BBA-17EF97728C0C}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PoFastType.Api", "src\PoFastType.Api\PoFastType.Api.csproj", "{FBD15D2B-0C27-4D6C-8BBA-17EF97728C0C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PoFastType.Client", "PoFastType.Client\PoFastType.Client.csproj", "{42CFE93B-C8D6-4143-BB8A-60B9A5113A92}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PoFastType.Client", "src\PoFastType.Client\PoFastType.Client.csproj", "{42CFE93B-C8D6-4143-BB8A-60B9A5113A92}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PoFastType.Shared", "PoFastType.Shared\PoFastType.Shared.csproj", "{1C08E782-878D-43C1-99E5-579C9C223A51}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PoFastType.Shared", "src\PoFastType.Shared\PoFastType.Shared.csproj", "{1C08E782-878D-43C1-99E5-579C9C223A51}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PoFastType.Tests", "PoFastType.Tests\PoFastType.Tests.csproj", "{C473E3F9-0DF3-4C4A-B79E-6FA759132CD0}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PoFastType.Tests", "tests\PoFastType.Tests\PoFastType.Tests.csproj", "{C473E3F9-0DF3-4C4A-B79E-6FA759132CD0}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
Loading
Loading