-
-
Notifications
You must be signed in to change notification settings - Fork 303
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
agile.zhou
committed
Jun 2, 2024
1 parent
ac1f022
commit 496b929
Showing
3 changed files
with
101 additions
and
65 deletions.
There are no files selected for viewing
133 changes: 69 additions & 64 deletions
133
src/AgileConfig.Server.Apisite/AgileConfig.Server.Apisite.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,76 +1,81 @@ | ||
<Project Sdk="Microsoft.NET.Sdk.Web"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel> | ||
<AssemblyVersion>1.9.3</AssemblyVersion> | ||
<Version>1.9.3</Version> | ||
<PackageVersion>1.9.2</PackageVersion> | ||
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS> | ||
<FileVersion>1.9.3</FileVersion> | ||
<Authors>kklldog</Authors> | ||
<Company>kklldog</Company> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel> | ||
<AssemblyVersion>1.9.3</AssemblyVersion> | ||
<Version>1.9.3</Version> | ||
<PackageVersion>1.9.2</PackageVersion> | ||
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS> | ||
<FileVersion>1.9.3</FileVersion> | ||
<Authors>kklldog</Authors> | ||
<Company>kklldog</Company> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
<DocumentationFile>bin\Debug\AgileConfig.Server.Apisite.xml</DocumentationFile> | ||
<NoWarn>1701;1702;1591;1573</NoWarn> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
<DocumentationFile>bin\Debug\AgileConfig.Server.Apisite.xml</DocumentationFile> | ||
<NoWarn>1701;1702;1591;1573</NoWarn> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | ||
<DocumentationFile>bin\Release\AgileConfig.Server.Apisite.xml</DocumentationFile> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | ||
<DocumentationFile>bin\Release\AgileConfig.Server.Apisite.xml</DocumentationFile> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Remove="agile_config.db" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Remove="agile_config.db" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.19.5" /> | ||
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="8.0.0" /> | ||
<PackageReference Include="Npgsql.OpenTelemetry" Version="8.0.3" /> | ||
<PackageReference Include="OpenTelemetry.Exporter.Console" Version="1.8.1" /> | ||
<PackageReference Include="OpenTelemetry.Exporter.OpenTelemetryProtocol" Version="1.8.1" /> | ||
<PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.8.1" /> | ||
<PackageReference Include="OpenTelemetry.Instrumentation.AspNetCore" Version="1.8.1" /> | ||
<PackageReference Include="OpenTelemetry.Instrumentation.Http" Version="1.8.1" /> | ||
<PackageReference Include="OpenTelemetry.Instrumentation.Runtime" Version="1.8.0" /> | ||
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerGen" Version="6.5.0" /> | ||
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerUI" Version="6.5.0" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.19.5" /> | ||
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Diagnostics.ResourceMonitoring" Version="8.5.0" /> | ||
<PackageReference Include="Npgsql.OpenTelemetry" Version="8.0.3" /> | ||
<PackageReference Include="OpenTelemetry.Exporter.Console" Version="1.8.1" /> | ||
<PackageReference Include="OpenTelemetry.Exporter.OpenTelemetryProtocol" Version="1.8.1" /> | ||
<PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.8.1" /> | ||
<PackageReference Include="OpenTelemetry.Instrumentation.AspNetCore" Version="1.8.1" /> | ||
<PackageReference Include="OpenTelemetry.Instrumentation.Http" Version="1.8.1" /> | ||
<PackageReference Include="OpenTelemetry.Instrumentation.Runtime" Version="1.8.0" /> | ||
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerGen" Version="6.5.0" /> | ||
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerUI" Version="6.5.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\AgileConfig.Server.Common\AgileConfig.Server.Common.csproj" /> | ||
<ProjectReference Include="..\AgileConfig.Server.Data.Abstraction\AgileConfig.Server.Data.Abstraction.csproj" /> | ||
<ProjectReference Include="..\AgileConfig.Server.Data.Repository.Freesql\AgileConfig.Server.Data.Repository.Freesql.csproj" /> | ||
<ProjectReference Include="..\AgileConfig.Server.Data.Repository.Mongodb\AgileConfig.Server.Data.Repository.Mongodb.csproj" /> | ||
<ProjectReference Include="..\Agile.Config.Protocol\Agile.Config.Protocol.csproj" /> | ||
<ProjectReference Include="..\AgileConfig.Server.Data.Entity\AgileConfig.Server.Data.Entity.csproj" /> | ||
<ProjectReference Include="..\AgileConfig.Server.Data.Freesql\AgileConfig.Server.Data.Freesql.csproj" /> | ||
<ProjectReference Include="..\AgileConfig.Server.Data.Repository.Selector\AgileConfig.Server.Data.Repository.Selector.csproj" /> | ||
<ProjectReference Include="..\AgileConfig.Server.Event\AgileConfig.Server.Event.csproj" /> | ||
<ProjectReference Include="..\AgileConfig.Server.OIDC\AgileConfig.Server.OIDC.csproj" /> | ||
<ProjectReference Include="..\AgileConfig.Server.Service\AgileConfig.Server.Service.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\AgileConfig.Server.Common\AgileConfig.Server.Common.csproj" /> | ||
<ProjectReference Include="..\AgileConfig.Server.Data.Abstraction\AgileConfig.Server.Data.Abstraction.csproj" /> | ||
<ProjectReference Include="..\AgileConfig.Server.Data.Repository.Freesql\AgileConfig.Server.Data.Repository.Freesql.csproj" /> | ||
<ProjectReference Include="..\AgileConfig.Server.Data.Repository.Mongodb\AgileConfig.Server.Data.Repository.Mongodb.csproj" /> | ||
<ProjectReference Include="..\Agile.Config.Protocol\Agile.Config.Protocol.csproj" /> | ||
<ProjectReference Include="..\AgileConfig.Server.Data.Entity\AgileConfig.Server.Data.Entity.csproj" /> | ||
<ProjectReference Include="..\AgileConfig.Server.Data.Freesql\AgileConfig.Server.Data.Freesql.csproj" /> | ||
<ProjectReference Include="..\AgileConfig.Server.Data.Repository.Selector\AgileConfig.Server.Data.Repository.Selector.csproj" /> | ||
<ProjectReference Include="..\AgileConfig.Server.Event\AgileConfig.Server.Event.csproj" /> | ||
<ProjectReference Include="..\AgileConfig.Server.OIDC\AgileConfig.Server.OIDC.csproj" /> | ||
<ProjectReference Include="..\AgileConfig.Server.Service\AgileConfig.Server.Service.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Content Update="appsettings.Development.json"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</Content> | ||
<Content Update="nlog.config"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</Content> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Content Update="appsettings.Development.json"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</Content> | ||
<Content Update="nlog.config"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</Content> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Folder Include="logs\" /> | ||
<Folder Include="Views\Shared" /> | ||
<Folder Include="wwwroot\ui\" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Folder Include="logs\" /> | ||
<Folder Include="Views\Shared" /> | ||
<Folder Include="wwwroot\ui\" /> | ||
</ItemGroup> | ||
|
||
<ProjectExtensions><VisualStudio><UserProperties appsettings_1json__JsonSchema="" /></VisualStudio></ProjectExtensions> | ||
<ProjectExtensions> | ||
<VisualStudio> | ||
<UserProperties appsettings_1json__JsonSchema="" /> | ||
</VisualStudio> | ||
</ProjectExtensions> | ||
|
||
</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