-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathThingConnect.Pulse.Server.csproj
More file actions
69 lines (62 loc) · 3.36 KB
/
ThingConnect.Pulse.Server.csproj
File metadata and controls
69 lines (62 loc) · 3.36 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<SpaRoot>..\thingconnect.pulse.client</SpaRoot>
<SpaProxyLaunchCommand>npm run dev</SpaProxyLaunchCommand>
<SpaProxyServerUrl>https://localhost:55605</SpaProxyServerUrl>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<WarningsAsErrors>CA1001;CA1009;CA1016;CA1033;CA1049;CA1060;CA1061;CA1063;CA1065;CA1301;CA1400;CA1401;CA1403;CA1404;CA1405;CA1410;CA1415;CA1821;CA1900;CA1901;CA2002;CA2100;CA2101;CA2108;CA2111;CA2112;CA2114;CA2116;CA2117;CA2122;CA2123;CA2124;CA2131;CA2132;CA2133;CA2134;CA2137;CA2138;CA2140;CA2141;CA2146;CA2147;CA2149;CA2200;CA2202;CA2207;CA2212;CA2213;CA2214;CA2216;CA2220;CA2229;CA2231;CA2232;CA2235;CA2236;CA2237;CA2238;CA2240;CA2241;CA2242</WarningsAsErrors>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<AnalysisLevel>latest</AnalysisLevel>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.0" />
<PackageReference Include="Microsoft.AspNetCore.SpaProxy">
<Version>8.*-*</Version>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" Version="9.0.8" />
<PackageReference Include="NJsonSchema" Version="11.5.2" />
<PackageReference Include="Sentry" Version="5.15.0" />
<PackageReference Include="Sentry.AspNetCore" Version="5.15.0" />
<PackageReference Include="Serilog.AspNetCore" Version="9.0.0" />
<PackageReference Include="Serilog.Sinks.File" Version="7.0.0" />
<PackageReference Include="Serilog.Enrichers.Environment" Version="3.0.1" />
<PackageReference Include="Serilog.Enrichers.Process" Version="3.0.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.6.2" />
<PackageReference Include="YamlDotNet" Version="16.3.0" />
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.556">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="8.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\thingconnect.pulse.client\thingconnect.pulse.client.esproj">
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Folder Include="Controllers\" />
</ItemGroup>
<ItemGroup>
<None Include="config.schema.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="..\sample-config.yaml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Link>sample-config.yaml</Link>
</None>
</ItemGroup>
<!-- Prevent auto-generation of web.config during publish -->
<PropertyGroup>
<IsTransformWebConfigDisabled>true</IsTransformWebConfigDisabled>
</PropertyGroup>
</Project>