forked from moattarwork/Easify
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into Feature/MinimalAPI
- Loading branch information
Showing
45 changed files
with
271 additions
and
244 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
60 changes: 35 additions & 25 deletions
60
...eBlocks.AspNetCore.Bootstrap.UnitTests/LittleBlocks.AspNetCore.Bootstrap.UnitTests.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 |
---|---|---|
@@ -1,27 +1,37 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<LangVersion>12</LangVersion> | ||
<TargetFramework>net8.0</TargetFramework> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" /> | ||
<PackageReference Include="xunit" Version="2.6.6" /> | ||
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\LittleBlocks.DependencyInjection\LittleBlocks.DependencyInjection.csproj" /> | ||
<ProjectReference Include="..\LittleBlocks.AspNetCore.Bootstrap\LittleBlocks.AspNetCore.Bootstrap.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Update="LittleBlocks.AspNetCore.Bootstrap.UnitTests.xunit.runner.json"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<LangVersion> | ||
12 | ||
</LangVersion> | ||
<TargetFramework> | ||
net8.0 | ||
</TargetFramework> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" /> | ||
<PackageReference Include="xunit" Version="2.8.1" /> | ||
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.1"> | ||
<PrivateAssets> | ||
all | ||
</PrivateAssets> | ||
<IncludeAssets> | ||
runtime; build; native; contentfiles; analyzers; buildtransitive | ||
</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\LittleBlocks.DependencyInjection\LittleBlocks.DependencyInjection.csproj" /> | ||
<ProjectReference Include="..\LittleBlocks.AspNetCore.Bootstrap\LittleBlocks.AspNetCore.Bootstrap.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Update="LittleBlocks.AspNetCore.Bootstrap.UnitTests.xunit.runner.json"> | ||
<CopyToOutputDirectory> | ||
PreserveNewest | ||
</CopyToOutputDirectory> | ||
</None> | ||
</ItemGroup> | ||
</Project> |
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
86 changes: 54 additions & 32 deletions
86
src/LittleBlocks.AspNetCore.Bootstrap/LittleBlocks.AspNetCore.Bootstrap.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 |
---|---|---|
@@ -1,34 +1,56 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<GeneratePackageOnBuild>True</GeneratePackageOnBuild> | ||
<Description>Allows easy bootstrapping of .NET Core App's</Description> | ||
<Authors>Mohammad Moattar; Aurimas Gecas</Authors> | ||
<Company>LittleBlocks</Company> | ||
<PackageProjectUrl>http://github.com/LittleBlocks/LittleBlocks.API</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/LittleBlocks/LittleBlocks.API</RepositoryUrl> | ||
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute> | ||
<Version>1.0.0</Version> | ||
<LangVersion>12</LangVersion> | ||
<OutputType>Library</OutputType> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="AspNetCore.HealthChecks.UI.Client" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="8.0.1" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.VisualStudio.Web.BrowserLink.Loader" Version="14.1.0" /> | ||
<PackageReference Include="Serilog.Extensions.Logging" Version="8.0.0" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\LittleBlocks.AspNetCore\LittleBlocks.AspNetCore.csproj" /> | ||
<ProjectReference Include="..\LittleBlocks.Bootstrap\LittleBlocks.Bootstrap.csproj" /> | ||
<ProjectReference Include="..\LittleBlocks.Configurations\LittleBlocks.Configurations.csproj" /> | ||
<ProjectReference Include="..\LittleBlocks.ExceptionHandling\LittleBlocks.ExceptionHandling.csproj" /> | ||
<ProjectReference Include="..\LittleBlocks.RestEase\LittleBlocks.RestEase.csproj" /> | ||
<ProjectReference Include="..\LittleBlocks.DependencyInjection\LittleBlocks.DependencyInjection.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Remove="Templates\home.html" /> | ||
<EmbeddedResource Include="Templates\home.html" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<TargetFramework> | ||
net8.0 | ||
</TargetFramework> | ||
<GeneratePackageOnBuild> | ||
True | ||
</GeneratePackageOnBuild> | ||
<Description> | ||
Allows easy bootstrapping of .NET Core App's | ||
</Description> | ||
<Authors> | ||
Mohammad Moattar; Aurimas Gecas | ||
</Authors> | ||
<Company> | ||
LittleBlocks | ||
</Company> | ||
<PackageProjectUrl> | ||
http://github.com/LittleBlocks/LittleBlocks.API | ||
</PackageProjectUrl> | ||
<RepositoryUrl> | ||
https://github.com/LittleBlocks/LittleBlocks.API | ||
</RepositoryUrl> | ||
<GenerateAssemblyVersionAttribute> | ||
false | ||
</GenerateAssemblyVersionAttribute> | ||
<Version> | ||
1.0.0 | ||
</Version> | ||
<LangVersion> | ||
12 | ||
</LangVersion> | ||
<OutputType> | ||
Library | ||
</OutputType> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="AspNetCore.HealthChecks.UI.Client" Version="8.0.1" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="8.0.6" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.VisualStudio.Web.BrowserLink.Loader" Version="14.1.0" /> | ||
<PackageReference Include="Serilog.Extensions.Logging" Version="8.0.0" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\LittleBlocks.AspNetCore\LittleBlocks.AspNetCore.csproj" /> | ||
<ProjectReference Include="..\LittleBlocks.Bootstrap\LittleBlocks.Bootstrap.csproj" /> | ||
<ProjectReference Include="..\LittleBlocks.Configurations\LittleBlocks.Configurations.csproj" /> | ||
<ProjectReference Include="..\LittleBlocks.ExceptionHandling\LittleBlocks.ExceptionHandling.csproj" /> | ||
<ProjectReference Include="..\LittleBlocks.RestEase\LittleBlocks.RestEase.csproj" /> | ||
<ProjectReference Include="..\LittleBlocks.DependencyInjection\LittleBlocks.DependencyInjection.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Remove="Templates\home.html" /> | ||
<EmbeddedResource Include="Templates\home.html" /> | ||
</ItemGroup> | ||
</Project> |
68 changes: 36 additions & 32 deletions
68
src/LittleBlocks.AspNetCore.UnitTests/LittleBlocks.AspNetCore.UnitTests.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 |
---|---|---|
@@ -1,34 +1,38 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<LangVersion>12</LangVersion> | ||
<TargetFramework>net8.0</TargetFramework> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" /> | ||
<PackageReference Include="NSubstitute" Version="5.1.0" /> | ||
<PackageReference Include="System.ComponentModel.TypeConverter" Version="4.3.0" /> | ||
<PackageReference Include="xunit" Version="2.6.6" /> | ||
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\LittleBlocks.AspNetCore\LittleBlocks.AspNetCore.csproj" /> | ||
<ProjectReference Include="..\LittleBlocks.Testing\LittleBlocks.Testing.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Update="LittleBlocks.AspNetCore.UnitTests.xunit.runner.json"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" /> | ||
</ItemGroup> | ||
|
||
<PropertyGroup> | ||
<LangVersion> | ||
12 | ||
</LangVersion> | ||
<TargetFramework> | ||
net8.0 | ||
</TargetFramework> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" /> | ||
<PackageReference Include="NSubstitute" Version="5.1.0" /> | ||
<PackageReference Include="System.ComponentModel.TypeConverter" Version="4.3.0" /> | ||
<PackageReference Include="xunit" Version="2.8.1" /> | ||
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.1"> | ||
<PrivateAssets> | ||
all | ||
</PrivateAssets> | ||
<IncludeAssets> | ||
runtime; build; native; contentfiles; analyzers; buildtransitive | ||
</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\LittleBlocks.AspNetCore\LittleBlocks.AspNetCore.csproj" /> | ||
<ProjectReference Include="..\LittleBlocks.Testing\LittleBlocks.Testing.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Update="LittleBlocks.AspNetCore.UnitTests.xunit.runner.json"> | ||
<CopyToOutputDirectory> | ||
PreserveNewest | ||
</CopyToOutputDirectory> | ||
</None> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" /> | ||
</ItemGroup> | ||
</Project> |
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
Oops, something went wrong.