-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathGurux.Common.csproj
More file actions
90 lines (86 loc) · 4.15 KB
/
Gurux.Common.csproj
File metadata and controls
90 lines (86 loc) · 4.15 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
84
85
86
87
88
89
90
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>Gurux.Common</RootNamespace>
<AssemblyName>Gurux.Common</AssemblyName>
<Company>Gurux Ltd</Company>
<Authors>Gurux Ltd</Authors>
<Copyright>Copyright (c) 1998-2025 Gurux Ltd. All rights reserved.</Copyright>
<PackageProjectUrl>www.gurux.fi</PackageProjectUrl>
<Description>Gurux.Common class implements interfaces that are needed for Gurux Media components and Gurux Device Framework.</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;netstandard2.1;netstandard2.0</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<RepositoryUrl>https://github.com/gurux/gurux.common</RepositoryUrl>
<PackageTags>AMR, AMI IOT</PackageTags>
<PackageId>Gurux.Common</PackageId>
<PackageIcon>Gurux.Common.png</PackageIcon>
<PackageLicenseExpression>GPL-2.0-only</PackageLicenseExpression>
</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)' == 'net6.0-windows'">
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
<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="AboutBox1.cs" />
<Compile Remove="AboutBox1.Designer.cs" />
<Compile Remove="AddInsForm.cs" />
<Compile Remove="AddInsForm.Designer.cs" />
<Compile Remove="LibraryVersionsDlg.cs" />
<Compile Remove="LibraryVersionsDlg.Designer.cs" />
</ItemGroup>
<ItemGroup Condition="'$(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)' == 'net9.0' or '$(TargetFramework)' == 'net8.0' or '$(TargetFramework)' == 'net6.0'">
<PackageReference Include="System.Resources.Extensions">
<Version>6.0.0</Version>
</PackageReference>
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0-windows' or '$(TargetFramework)' == 'net8.0-windows' or '$(TargetFramework)' == 'net6.0-windows'">
<Reference Include="System.Windows.Forms" />
<PackageReference Include="System.Resources.Extensions">
<Version>6.0.0</Version>
</PackageReference>
</ItemGroup>
<ItemGroup>
<None Include="Gurux.Common.png" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>