-
Notifications
You must be signed in to change notification settings - Fork 221
Expand file tree
/
Copy pathAggregation Client.csproj
More file actions
54 lines (54 loc) · 2.33 KB
/
Copy pathAggregation Client.csproj
File metadata and controls
54 lines (54 loc) · 2.33 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0-windows</TargetFramework>
<OutputType>WinExe</OutputType>
<RootNamespace>AggregationClient</RootNamespace>
<AssemblyName>AggregationClient</AssemblyName>
<ApplicationIcon>App.ico</ApplicationIcon>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<UseWindowsForms>true</UseWindowsForms>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<OutputPath>..\..\..\bin\Debug\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<OutputPath>..\..\..\bin\Release\</OutputPath>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="App.ico">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</EmbeddedResource>
<Content Include="Quickstarts.AggregationClient.Config.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<SubType>Designer</SubType>
</Content>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\Samples\ClientControls.Net4\UA Client Controls.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Console">
<Version>10.0.10</Version>
</PackageReference>
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.Client">
<Version>2.0.158.59919-preview</Version>
</PackageReference>
</ItemGroup>
<ItemGroup Label="Compile items now included by globbing that were not in the original project file">
<Compile Remove="WriteValueDlg.Designer.cs" />
<Compile Remove="WriteValueDlg.cs" />
<Compile Remove="TutorialModel.DataTypes.cs" />
<Compile Remove="TutorialModel.Constants.cs" />
<Compile Remove="SubscribeDataDlg.Designer.cs" />
<Compile Remove="SubscribeDataDlg.cs" />
<Compile Remove="CallMethodDlg.Designer.cs" />
<Compile Remove="CallMethodDlg.cs" />
<Compile Remove="AggregationModel.DataTypes.cs" />
<Compile Remove="AggregationModel.Constants.cs" />
</ItemGroup>
<ItemGroup Label="EmbeddedResource items now included by globbing that were not in the original project file">
<EmbeddedResource Remove="WriteValueDlg.resx" />
<EmbeddedResource Remove="SubscribeDataDlg.resx" />
<EmbeddedResource Remove="CallMethodDlg.resx" />
</ItemGroup>
</Project>