forked from microting/eform-angular-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheFormAPI.Web.csproj
More file actions
86 lines (74 loc) · 3.63 KB
/
eFormAPI.Web.csproj
File metadata and controls
86 lines (74 loc) · 3.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>API.doc.xml</DocumentationFile>
<NoWarn>1701;1702;1591;</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>bin\</OutputPath>
</PropertyGroup>
<ItemGroup>
<Compile Remove="output\**" />
<Compile Remove="Plugins\**" />
</ItemGroup>
<ItemGroup>
<None Remove="Resources\Email.html" />
<None Remove="Resources\Templates\WordExport\file.docx" />
<None Remove="Resources\Templates\WordExport\page.html" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\Email.html" />
<EmbeddedResource Include="Resources\Templates\WordExport\file.docx" />
<EmbeddedResource Include="Resources\Templates\WordExport\page.html" />
</ItemGroup>
<PropertyGroup>
<ResolveStaticWebAssetsInputsDependsOn>RemoveIdentityAssets</ResolveStaticWebAssetsInputsDependsOn>
</PropertyGroup>
<Target Name="RemoveIdentityAssets">
<ItemGroup>
<StaticWebAsset Remove="@(StaticWebAsset)" Condition="%(SourceId) == 'Microsoft.AspNetCore.Identity.UI'" />
</ItemGroup>
</Target>
<ItemGroup>
<PackageReference Include="AWSSDK.Core" Version="3.7.0.27" />
<PackageReference Include="AWSSDK.S3" Version="3.7.0.28" />
<PackageReference Include="ClosedXML" Version="0.95.4" />
<PackageReference Include="HtmlToOpenXml.dll" Version="2.2.0" />
<PackageReference Include="Magick.NET-Q16-x64" Version="7.24.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="5.0.6" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="5.0.6" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="5.0.6" />
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="5.0.6" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="5.0.6">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.Extensions.PlatformAbstractions" Version="1.1.0" />
<PackageReference Include="Microting.eForm" Version="5.2.3" />
<PackageReference Include="Microting.eFormApi.BasePn" Version="3.0.13" />
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="5.0.0" />
<PackageReference Include="SharpZipLib.NETStandard" Version="1.0.7" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.1.4" />
<PackageReference Include="McMaster.NETCore.Plugins" Version="1.4.0" />
<PackageReference Include="OtpSharp.Core" Version="1.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="5.0.6" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="5.0.6" />
<PackageReference Include="sendgrid" Version="9.23.2" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="5.0.0" />
<PackageReference Include="System.Threading.AccessControl" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<None Update="API.doc.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Folder Include="Plugins" />
</ItemGroup>
</Project>