Admin.NET.Plugin.Elsa.csproj 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  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. <PackageReference Include="Elsa" Version="2.13.0" />
  16. <PackageReference Include="Elsa.Activities.Http" Version="2.13.0" />
  17. <PackageReference Include="Elsa.Designer.Components.Web" Version="2.13.0" />
  18. <PackageReference Include="Elsa.Server.Api" Version="2.13.0" />
  19. </ItemGroup>
  20. <ItemGroup>
  21. <ProjectReference Include="..\..\Admin.NET.Core\Admin.NET.Core.csproj" />
  22. </ItemGroup>
  23. <ItemGroup>
  24. <None Update="Elsa.json">
  25. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  26. </None>
  27. </ItemGroup>
  28. </Project>