Admin.NET.Plugin.Flow.csproj 823 B

123456789101112131415161718192021222324252627
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>disable</Nullable>
  6. <GenerateDocumentationFile>True</GenerateDocumentationFile>
  7. </PropertyGroup>
  8. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  9. <NoWarn>1701;1702;1591;8632</NoWarn>
  10. </PropertyGroup>
  11. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  12. <NoWarn>1701;1702;1591;8632</NoWarn>
  13. </PropertyGroup>
  14. <ItemGroup>
  15. <ProjectReference Include="..\..\Admin.NET.Core\Admin.NET.Core.csproj" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <None Update="Flow.json">
  19. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  20. </None>
  21. </ItemGroup>
  22. </Project>