Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgDangl committed Aug 25, 2021
2 parents 6f2bb0c + 5dc9662 commit 9ac8c56
Show file tree
Hide file tree
Showing 26 changed files with 26,912 additions and 11,289 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

All notable changes to **LightQuery** are documented here.

## v2.1.0:
- The Angular client was updated to Angular v12

## v2.0.0
- Added a compilation target for `net5.0` and added tests for `net5.0`
- Dropped support for `netcoreapp3.0` and changed target to `netcoreapp3.1`
Expand Down
4 changes: 2 additions & 2 deletions build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ else {
# Install by channel or version
$DotNetDirectory = "$TempDirectory\dotnet-win"
if (!(Test-Path variable:DotNetVersion)) {
ExecSafe { & $DotNetInstallFile -InstallDir $DotNetDirectory -Channel $DotNetChannel -NoPath }
ExecSafe { & powershell $DotNetInstallFile -InstallDir $DotNetDirectory -Channel $DotNetChannel -NoPath }
} else {
ExecSafe { & $DotNetInstallFile -InstallDir $DotNetDirectory -Version $DotNetVersion -NoPath }
ExecSafe { & powershell $DotNetInstallFile -InstallDir $DotNetDirectory -Version $DotNetVersion -NoPath }
}
$env:DOTNET_EXE = "$DotNetDirectory\dotnet.exe"
}
Expand Down
8 changes: 4 additions & 4 deletions build/.build.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
<ItemGroup>
<PackageDownload Include="GitVersion.Tool" Version="[5.6.7]" />
<PackageReference Include="Dangl.Nuke.CoberturaConverter" Version="2.0.0" />
<PackageReference Include="Nuke.Common" Version="5.1.1" />
<PackageReference Include="Nuke.Common" Version="5.3.0" />
<PackageReference Include="Nuke.WebDocu" Version="3.0.1" />
<PackageReference Include="Nuke.GitHub" Version="2.0.0" />
<PackageReference Include="JetBrains.dotCover.CommandLineTools" Version="2021.1.2">
<PackageReference Include="JetBrains.dotCover.CommandLineTools" Version="2021.2.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="ReportGenerator" Version="4.8.8" />
<PackageReference Include="docfx.console" Version="2.57.2">
<PackageReference Include="ReportGenerator" Version="4.8.12" />
<PackageReference Include="docfx.console" Version="2.58.2">
<ExcludeAssets>build</ExcludeAssets>
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; native; contentfiles; analyzers</IncludeAssets>
Expand Down
2 changes: 1 addition & 1 deletion src/LightQuery.NSwag/LightQuery.NSwag.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="NSwag.AspNetCore" Version="13.11.1" />
<PackageReference Include="NSwag.AspNetCore" Version="13.13.2" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/LightQuery.Swashbuckle/LightQuery.Swashbuckle.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Swashbuckle.AspNetCore" Version="5.4.1" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.1.5" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/ng-lightquery/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"prefix": "lib",
"architect": {
"build": {
"builder": "@angular-devkit/build-ng-packagr:build",
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"tsConfig": "projects/ng-lightquery/tsconfig.lib.json",
"project": "projects/ng-lightquery/ng-package.json"
Expand Down
Loading

0 comments on commit 9ac8c56

Please sign in to comment.