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
74 lines (63 loc) · 3.11 KB
/
eFormAPI.Web.csproj
File metadata and controls
74 lines (63 loc) · 3.11 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ServerGarbageCollection>false</ServerGarbageCollection>
</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="AspNetCore.HealthChecks.MySql" Version="9.0.0" />
<PackageReference Include="AspNetCore.HealthChecks.Rabbitmq" Version="9.0.0" />
<PackageReference Include="AspNetCore.HealthChecks.UI.Client" Version="9.0.0" />
<PackageReference Include="HtmlToOpenXml.dll" Version="3.2.8" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="9.0.11" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="10.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="9.0.11" />
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="9.0.11" />
<PackageReference Include="Microsoft.Extensions.PlatformAbstractions" Version="1.1.0" />
<PackageReference Include="Microting.eForm" Version="9.0.72" />
<PackageReference Include="Microting.EformAngularFrontendBase" Version="9.0.59" />
<PackageReference Include="Microting.eFormApi.BasePn" Version="9.0.62" />
<PackageReference Include="PureOtp" Version="1.0.0.1" />
<PackageReference Include="Sentry" Version="6.1.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="9.0.6" />
<PackageReference Include="McMaster.NETCore.Plugins" Version="2.0.0" />
<PackageReference Include="sendgrid" Version="9.29.3" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="10.0.0" />
<PackageReference Include="System.Threading.AccessControl" Version="10.0.0" />
</ItemGroup>
<ItemGroup>
<Folder Include="Plugins" />
</ItemGroup>
</Project>