Auth.csproj 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0</TargetFramework>
  4. <Nullable>enable</Nullable>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. </PropertyGroup>
  7. <ItemGroup>
  8. <PackageReference Include="IdentityServer4" Version="4.1.2" />
  9. </ItemGroup>
  10. <ItemGroup>
  11. <ProjectReference Include="..\..\Core\Long.Utils\Long.Utils.csproj" />
  12. <ProjectReference Include="..\..\Lib\Long.Common\Long.Common.csproj" />
  13. <ProjectReference Include="..\..\Lib\Long.DAO\Long.DAO.csproj" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <Content Update="appsettings.Development.json">
  17. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  18. <ExcludeFromSingleFile>true</ExcludeFromSingleFile>
  19. <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
  20. </Content>
  21. <Content Update="appsettings.json">
  22. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  23. <ExcludeFromSingleFile>true</ExcludeFromSingleFile>
  24. <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
  25. </Content>
  26. </ItemGroup>
  27. <ItemGroup>
  28. <None Update="www.guanglinta.com.pfx">
  29. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  30. </None>
  31. </ItemGroup>
  32. </Project>