-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathOneDas.Core.WebServer.csproj
More file actions
48 lines (41 loc) · 1.89 KB
/
OneDas.Core.WebServer.csproj
File metadata and controls
48 lines (41 loc) · 1.89 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<Description>Provides a web-based user interface for OneDAS.</Description>
<IsPackable>true</IsPackable>
<PackageTags>OneDAS data aquisition measurement</PackageTags>
<!--<PackAsTool>true</PackAsTool>-->
<TargetFramework>net5.0</TargetFramework>
<ToolCommandName>onedas</ToolCommandName>
<TypeScriptToolsVersion>latest</TypeScriptToolsVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Hosting.WindowsServices" Version="5.0.0" />
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="5.0.0" />
<PackageReference Include="Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson" Version="5.0.0" />
<PackageReference Include="Microsoft.DotNet.PlatformAbstractions" Version="3.1.6" />
<PackageReference Include="Microsoft.Extensions.DependencyModel" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.EventLog" Version="5.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\OneDas.Core.WebClient\OneDas.Core.WebClient.csproj" />
<ProjectReference Include="..\OneDas.Core\OneDas.Core.csproj" />
</ItemGroup>
<ItemGroup>
<Content Update="bundleconfig.json" CopyToPublishDirectory="Never" />
</ItemGroup>
<ItemGroup>
<Compile Update="Resources\ErrorMessage.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>ErrorMessage.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Resources\ErrorMessage.resx">
<Generator>ResXFileCodeGenerator</Generator>
<CustomToolNamespace>OneDas.WebServer</CustomToolNamespace>
<LastGenOutput>ErrorMessage.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>