Skip to content

Commit

Permalink
up nuget without cap
Browse files Browse the repository at this point in the history
  • Loading branch information
Tynab committed Sep 15, 2023
1 parent 193f2da commit 4670337
Show file tree
Hide file tree
Showing 12 changed files with 43 additions and 42 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#See https://aka.ms/customizecontainer to learn how to customize your debug container and how Visual Studio uses this Dockerfile to build your images for faster debugging.

FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base
FROM mcr.microsoft.com/dotnet/aspnet:7.0 AS base
WORKDIR /app
EXPOSE 80
EXPOSE 443

FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build
WORKDIR /yanlib
COPY ["NuGet.Config", "."]
COPY ["lib/YANLib/nuget.config", "lib/YANLib/"]
Expand Down
4 changes: 2 additions & 2 deletions console/YANLib.Benchmarks/YANLib.Benchmarks.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>preview</LangVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.13.5" />
<PackageReference Include="BenchmarkDotNet" Version="0.13.8" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>

Expand Down
32 changes: 16 additions & 16 deletions host/YANLib.HttpApi.Host/YANLib.HttpApi.Host.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Import Project="..\..\common.props" />

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<RootNamespace>YANLib</RootNamespace>
<PreserveCompilationReferences>true</PreserveCompilationReferences>
<UserSecretsId>YANLib-4681b4fd-151f-4221-84a4-929d86723e4c</UserSecretsId>
Expand All @@ -14,30 +14,30 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="AspNetCore.HealthChecks.SqlServer" Version="6.0.2" />
<PackageReference Include="AspNetCore.HealthChecks.UI.Client" Version="6.0.5" />
<PackageReference Include="AspNetCore.HealthChecks.SqlServer" Version="7.0.0" />
<PackageReference Include="AspNetCore.HealthChecks.UI.Client" Version="7.1.0" />
<PackageReference Include="DotNetCore.CAP" Version="6.2.1" />
<PackageReference Include="DotNetCore.CAP.Dashboard" Version="6.2.1" />
<PackageReference Include="DotNetCore.CAP.Kafka" Version="6.2.1" />
<PackageReference Include="DotNetCore.CAP.MongoDB" Version="6.2.1" />
<PackageReference Include="DotNetCore.CAP.RabbitMQ" Version="6.2.1" />
<PackageReference Include="Elastic.Apm.NetCoreAll" Version="1.22.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="6.0.21" />
<PackageReference Include="Serilog.AspNetCore" Version="6.1.0" />
<PackageReference Include="Elastic.Apm.NetCoreAll" Version="1.23.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="7.0.11" />
<PackageReference Include="Serilog.AspNetCore" Version="7.0.0" />
<PackageReference Include="Serilog.Formatting.Compact" Version="1.1.0" />
<PackageReference Include="Serilog.Settings.Configuration" Version="7.0.0" />
<PackageReference Include="Serilog.Settings.Configuration" Version="7.0.1" />
<PackageReference Include="Serilog.Sinks.Async" Version="1.5.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="4.1.0" />
<PackageReference Include="Serilog.Sinks.Elasticsearch" Version="9.0.1" />
<PackageReference Include="Serilog.Sinks.Elasticsearch" Version="9.0.3" />
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" />
<PackageReference Include="Volo.Abp.Autofac" Version="6.0.3" />
<PackageReference Include="Volo.Abp.AspNetCore.Serilog" Version="6.0.3" />
<PackageReference Include="Volo.Abp.Caching.StackExchangeRedis" Version="6.0.3" />
<PackageReference Include="Volo.Abp.EntityFrameworkCore.SqlServer" Version="6.0.3" />
<PackageReference Include="Volo.Abp.EventBus.Azure" Version="6.0.3" />
<PackageReference Include="Volo.Abp.EventBus.RabbitMQ" Version="6.0.3" />
<PackageReference Include="Volo.Abp.Http.Client" Version="6.0.3" />
<PackageReference Include="Volo.Abp.Swashbuckle" Version="6.0.3" />
<PackageReference Include="Volo.Abp.Autofac" Version="7.3.3" />
<PackageReference Include="Volo.Abp.AspNetCore.Serilog" Version="7.3.3" />
<PackageReference Include="Volo.Abp.Caching.StackExchangeRedis" Version="7.3.3" />
<PackageReference Include="Volo.Abp.EntityFrameworkCore.SqlServer" Version="7.3.3" />
<PackageReference Include="Volo.Abp.EventBus.Azure" Version="7.3.3" />
<PackageReference Include="Volo.Abp.EventBus.RabbitMQ" Version="7.3.3" />
<PackageReference Include="Volo.Abp.Http.Client" Version="7.3.3" />
<PackageReference Include="Volo.Abp.Swashbuckle" Version="7.3.3" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
<Import Project="..\..\common.props" />

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<RootNamespace>YANLib</RootNamespace>
<LangVersion>preview</LangVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="NEST" Version="7.17.5" />
<PackageReference Include="Volo.Abp.Authorization" Version="6.0.3" />
<PackageReference Include="Volo.Abp.Ddd.Application.Contracts" Version="6.0.3" />
<PackageReference Include="Volo.Abp.Authorization" Version="7.3.3" />
<PackageReference Include="Volo.Abp.Ddd.Application.Contracts" Version="7.3.3" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions src/YANLib.Application.Redis/YANLib.Application.Redis.csproj
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>preview</LangVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="StackExchange.Redis" Version="2.6.111" />
<PackageReference Include="StackExchange.Redis" Version="2.6.122" />
</ItemGroup>

<ItemGroup>
Expand Down
9 changes: 5 additions & 4 deletions src/YANLib.Application/YANLib.Application.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Import Project="..\..\common.props" />

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<RootNamespace>YANLib</RootNamespace>
<LangVersion>preview</LangVersion>
</PropertyGroup>
Expand All @@ -17,10 +17,11 @@

<ItemGroup>
<PackageReference Include="DotNetCore.CAP.Kafka" Version="6.2.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="TynabXLongkunz.IdGeneratorSnowflake" Version="1.0.2" />
<PackageReference Include="Volo.Abp.AutoMapper" Version="6.0.3" />
<PackageReference Include="Volo.Abp.Ddd.Application" Version="6.0.3" />
<PackageReference Include="Volo.Abp.FluentValidation" Version="6.0.3" />
<PackageReference Include="Volo.Abp.AutoMapper" Version="7.3.3" />
<PackageReference Include="Volo.Abp.Ddd.Application" Version="7.3.3" />
<PackageReference Include="Volo.Abp.FluentValidation" Version="7.3.3" />
</ItemGroup>

</Project>
6 changes: 3 additions & 3 deletions src/YANLib.Domain.Shared/YANLib.Domain.Shared.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Import Project="..\..\common.props" />

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<RootNamespace>YANLib</RootNamespace>
<GenerateEmbeddedFilesManifest>true</GenerateEmbeddedFilesManifest>
<LangVersion>preview</LangVersion>
Expand All @@ -15,8 +15,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="6.0.20" />
<PackageReference Include="Volo.Abp.Validation" Version="6.0.3" />
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="7.0.11" />
<PackageReference Include="Volo.Abp.Validation" Version="7.3.3" />
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions src/YANLib.Domain/YANLib.Domain.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Import Project="..\..\common.props" />

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<RootNamespace>YANLib</RootNamespace>
<LangVersion>preview</LangVersion>
</PropertyGroup>
Expand All @@ -13,7 +13,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Volo.Abp.Ddd.Domain" Version="6.0.3" />
<PackageReference Include="Volo.Abp.Ddd.Domain" Version="7.3.3" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
<Import Project="..\..\common.props" />

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<RootNamespace>YANLib</RootNamespace>
<LangVersion>preview</LangVersion>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\..\lib\YANLib\YANLib.csproj" />
<ProjectReference Include="..\YANLib.Domain\YANLib.Domain.csproj" />
<PackageReference Include="Volo.Abp.EntityFrameworkCore" Version="6.0.3" />
<PackageReference Include="Volo.Abp.EntityFrameworkCore" Version="7.3.3" />
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions src/YANLib.HttpApi.Client/YANLib.HttpApi.Client.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Import Project="..\..\common.props" />

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<RootNamespace>YANLib</RootNamespace>
<LangVersion>preview</LangVersion>
</PropertyGroup>
Expand All @@ -13,7 +13,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Volo.Abp.Http.Client" Version="6.0.3" />
<PackageReference Include="Volo.Abp.Http.Client" Version="7.3.3" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions src/YANLib.HttpApi/YANLib.HttpApi.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Import Project="..\..\common.props" />

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<RootNamespace>YANLib</RootNamespace>
<LangVersion>preview</LangVersion>
</PropertyGroup>
Expand All @@ -16,7 +16,7 @@
<ItemGroup>
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="6.5.0" />
<PackageReference Include="TynabXLongkunz.IdGeneratorSnowflake" Version="1.0.2" />
<PackageReference Include="Volo.Abp.AspNetCore.Mvc" Version="6.0.3" />
<PackageReference Include="Volo.Abp.AspNetCore.Mvc" Version="7.3.3" />
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions src/YANLib.MongoDB/YANLib.MongoDB.csproj
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>preview</LangVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Volo.Abp.MongoDB" Version="6.0.3" />
<PackageReference Include="Volo.Abp.MongoDB" Version="7.3.3" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 4670337

Please sign in to comment.