1234567891011121314151617181920212223242526272829303132 |
- <Project Sdk="Microsoft.NET.Sdk.Web">
- <PropertyGroup>
- <TargetFramework>net8.0</TargetFramework>
- <Nullable>enable</Nullable>
- <ImplicitUsings>enable</ImplicitUsings>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="IdentityServer4" Version="4.1.2" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Core\Long.Utils\Long.Utils.csproj" />
- <ProjectReference Include="..\..\Lib\Long.Common\Long.Common.csproj" />
- <ProjectReference Include="..\..\Lib\Long.DAO\Long.DAO.csproj" />
- </ItemGroup>
- <ItemGroup>
- <Content Update="appsettings.Development.json">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- <ExcludeFromSingleFile>true</ExcludeFromSingleFile>
- <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
- </Content>
- <Content Update="appsettings.json">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- <ExcludeFromSingleFile>true</ExcludeFromSingleFile>
- <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
- </Content>
- </ItemGroup>
- <ItemGroup>
- <None Update="www.guanglinta.com.pfx">
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- </Project>
|