This repository has been archived by the owner on Aug 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* (#253) First version of the NSwag support. * (#253) Solution file * (#253) NSwag support * (#253) Sample for NSwag
- Loading branch information
1 parent
6cee766
commit 09d422a
Showing
4 changed files
with
23 additions
and
24 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,21 @@ | ||
<Project Sdk="Microsoft.NET.Sdk.Web"> | ||
<PropertyGroup> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<Nullable>enable</Nullable> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<LangVersion>10.0</LangVersion> | ||
<UserSecretsId>B5ED561E-A4A8-461C-B2E8-82E0A348A303</UserSecretsId> | ||
</PropertyGroup> | ||
<Project Sdk="Microsoft.NET.Sdk.Web"> | ||
<PropertyGroup> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<Nullable>enable</Nullable> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<LangVersion>10.0</LangVersion> | ||
<UserSecretsId>B5ED561E-A4A8-461C-B2E8-82E0A348A303</UserSecretsId> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.AspNetCore.Datasync" Version="5.0.17" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Datasync.EFCore" Version="5.0.17" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.12" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.12"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="NSwag.AspNetCore" Version="13.18.2" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.AspNetCore.Datasync" Version="5.0.18" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Datasync.EFCore" Version="5.0.18" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Datasync.NSwag" Version="5.0.18"/> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.12" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.12"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="NSwag.AspNetCore" Version="13.18.2" /> | ||
</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