-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathOPCUA_Web_Platform.csproj
38 lines (38 loc) · 1.53 KB
/
OPCUA_Web_Platform.csproj
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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<RootNamespace>WebPlatform</RootNamespace>
</PropertyGroup>
<PropertyGroup Condition=" '$(RunConfiguration)' == 'Default' ">
<StartAction>Project</StartAction>
<ExternalConsole>false</ExternalConsole>
<LaunchBrowser>false</LaunchBrowser>
<LaunchUrl>api/values</LaunchUrl>
</PropertyGroup>
<ItemGroup>
<Folder Include="wwwroot\" />
<Folder Include="Models\Auth\" />
<Folder Include="Models\OptionsModels\" />
<Folder Include="Models\OPCUA\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="M2MqttDotnetCore" Version="1.0.7" />
<PackageReference Include="Microsoft.AspNet.SignalR.Client" Version="2.2.3" />
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.1.5" />
<PackageReference Include="Newtonsoft.Json.Schema" Version="3.0.7" />
<PackageReference Include="NJsonSchema" Version="9.10.27" />
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua" Version="1.4.368.58" />
</ItemGroup>
<ItemGroup>
<DotNetCliToolReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Tools" Version="2.0.0" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Models\AuthCredentials.cs" />
<Compile Remove="OPC UA Layer\EmptyClass.cs" />
</ItemGroup>
<ItemGroup>
<None Update="OPCUAWebPlatform.Config.xml">
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</None>
</ItemGroup>
</Project>