-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathGurux.Serial.csproj
More file actions
83 lines (79 loc) · 4.32 KB
/
Gurux.Serial.csproj
File metadata and controls
83 lines (79 loc) · 4.32 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>Gurux.Serial</RootNamespace>
<AssemblyName>Gurux.Serial</AssemblyName>
<Company>Gurux Ltd</Company>
<Authors>Gurux Ltd</Authors>
<Copyright>Copyright (c) 1998-2025 Gurux Ltd. All rights reserved.</Copyright>
<PackageProjectUrl>www.gurux.fi/GXSerial</PackageProjectUrl>
<PackageLicenseUrl></PackageLicenseUrl>
<Description>Serial media component, for serial port connections.</Description>
<Version Condition=" '$(BUILD_BUILDNUMBER)' == '' ">0.0.1-local</Version>
<Version Condition=" '$(BUILD_BUILDNUMBER)' != '' ">$(BUILD_BUILDNUMBER)</Version>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<TargetFrameworks>net9.0;net9.0-windows;net8.0;net8.0-windows;net6.0-windows;net6.0;net462;netcoreapp3.1;netstandard2.1;netstandard2.0</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<RepositoryUrl>https://github.com/gurux/Gurux.Serial</RepositoryUrl>
<PackageTags>Gurux Device Framework Network Serial port</PackageTags>
<PackageId>Gurux.Serial</PackageId>
<ApplicationIcon>GXSerial.ico</ApplicationIcon>
<PackageLicenseExpression>GPL-2.0-only</PackageLicenseExpression>
<PackageIcon>GXSerial.png</PackageIcon>
</PropertyGroup>
<PropertyGroup>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'net6.0-windows'">
<TargetFramework>net6.0-windows</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'net8.0-windows'">
<TargetFramework>net8.0-windows</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'net9.0-windows'">
<TargetFramework>net9.0-windows</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
</PropertyGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0' or '$(TargetFramework)' == 'net8.0' or '$(TargetFramework)' == 'net6.0' or '$(TargetFramework)' == 'netcoreapp3.1' or '$(TargetFramework)' == 'netstandard2.0' or '$(TargetFramework)' == 'netstandard2.1'">
<Compile Remove="SettingsDlg.cs" />
<Compile Remove="SettingsDlg.Designer.cs" />
<Compile Remove="Shared\PropertiesForm.cs" />
<Compile Remove="Shared\PropertiesForm.Designer.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Gurux.Common" Version="8.4.2503.602" />
<PackageReference Include="System.Resources.Extensions" Version="9.0.2" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0-windows' or '$(TargetFramework)' == 'net8.0-windows' or '$(TargetFramework)' == 'net462'">
<Reference Include="System.Data.Linq" />
<Reference Include="System.Windows.Forms" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="System.Resources.Extensions">
<Version>5.0.0</Version>
</PackageReference>
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.1'">
<PackageReference Include="System.Resources.Extensions">
<Version>5.0.0</Version>
</PackageReference>
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.1'">
<PackageReference Include="System.Resources.Extensions">
<Version>5.0.0</Version>
</PackageReference>
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.1' or '$(TargetFramework)' == 'netcoreapp2.1' or '$(TargetFramework)' == 'netcoreapp2.0' or '$(TargetFramework)' == 'netstandard2.0' or '$(TargetFramework)' == 'netstandard2.1' or '$(TargetFramework)' == 'net6.0' or '$(TargetFramework)' == 'net6.0-windows' or '$(TargetFramework)' == 'net462'">
<PackageReference Include="System.IO.Ports" Version="6.0.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0' or '$(TargetFramework)' == 'net8.0' or '$(TargetFramework)' == 'net9.0-windows' or '$(TargetFramework)' == 'net8.0-windows'">
<PackageReference Include="System.IO.Ports" Version="9.0.2" />
</ItemGroup>
<ItemGroup>
<None Include="GXSerial.png" Pack="true" PackagePath="\" />
<None Include="GXSerialPortExtension.cs" />
</ItemGroup>
</Project>