-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathCoderr.Server.App.csproj
More file actions
41 lines (41 loc) · 2.13 KB
/
Coderr.Server.App.csproj
File metadata and controls
41 lines (41 loc) · 2.13 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>Coderr.Server.App</RootNamespace>
<AssemblyName>Coderr.Server.App</AssemblyName>
<DefaultItemExcludes>$(DefaultItemExcludes);*.DotSettings;*.vsspell;CustomDictionary.xml</DefaultItemExcludes>
<Configurations>Debug;Release;Premise</Configurations>
</PropertyGroup>
<ItemGroup>
<None Remove="Core\Accounts\CommandHandlers\Templates\ResetPassword\Template.md" />
<None Remove="Modules\Messaging\Templating\Layout\logo2.png" />
<None Remove="Modules\Messaging\Templating\Layout\Template.html" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Core\Accounts\CommandHandlers\Templates\ResetPassword\Template.md" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Modules\Messaging\Templating\Layout\logo2.png" />
<EmbeddedResource Include="Modules\Messaging\Templating\Layout\Template.html" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ColorCode" Version="1.0.1">
<NoWarn>NU1701</NoWarn>
</PackageReference>
<PackageReference Include="DnsClient" Version="1.6.0" />
<PackageReference Include="DotNetCqs" Version="2.1.1" />
<PackageReference Include="Griffin.Framework" Version="2.1.1" />
<PackageReference Include="log4net" Version="2.0.14" />
<PackageReference Include="Markdig" Version="0.22.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<PackageReference Include="UAParser" Version="3.1.47" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Coderr.Server.Api\Coderr.Server.Api.csproj" />
<ProjectReference Include="..\Coderr.Server.Domain\Coderr.Server.Domain.csproj" />
<ProjectReference Include="..\Coderr.Server.Infrastructure\Coderr.Server.Infrastructure.csproj" />
<ProjectReference Include="..\Coderr.Server.Abstractions\Coderr.Server.Abstractions.csproj" />
<ProjectReference Include="..\Coderr.Server.ReportAnalyzer.Abstractions\Coderr.Server.ReportAnalyzer.Abstractions.csproj" />
</ItemGroup>
</Project>