-
Notifications
You must be signed in to change notification settings - Fork 445
Expand file tree
/
Copy pathConsoleApplication1.csproj
More file actions
29 lines (29 loc) · 1.25 KB
/
ConsoleApplication1.csproj
File metadata and controls
29 lines (29 loc) · 1.25 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<AssemblyTitle>ConsoleApplication1</AssemblyTitle>
<Product>ConsoleApplication1</Product>
<Copyright>Copyright © 2017</Copyright>
<OutputPath>bin\$(Configuration)\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugType>full</DebugType>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.IO.Ports" Version="5.0.0-preview.6.20305.6" />
<PackageReference Include="System.Resources.Extensions" Version="5.0.0-preview.6.20305.6" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\EasyModbus\EasyModbus.csproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.Resources.Extensions">
<HintPath>..\..\..\..\..\..\Program Files\dotnet\packs\Microsoft.WindowsDesktop.App.Ref\5.0.0-preview.6.20308.1\ref\net5.0\System.Resources.Extensions.dll</HintPath>
</Reference>
</ItemGroup>
</Project>