-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGsemac.Net.WebBrowsers.csproj
56 lines (48 loc) · 1.94 KB
/
Gsemac.Net.WebBrowsers.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<Project Sdk="MSBuild.Sdk.Extras/3.0.44">
<PropertyGroup>
<TargetFrameworks>net40-client;netstandard2.0</TargetFrameworks>
<Company />
<Authors>gsemac</Authors>
<Version>0.10.10</Version>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<PackageProjectUrl>https://github.com/gsemac/Gsemac.Common</PackageProjectUrl>
<RepositoryUrl>https://github.com/gsemac/Gsemac.Common</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Copyright></Copyright>
<NoWarn>1701;1702;1591</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Portable.BouncyCastle" Version="1.9.0" />
<PackageReference Include="System.Data.SQLite" Version="1.0.119" />
</ItemGroup>
<ItemGroup Condition="$(DefineConstants.Contains('NETFRAMEWORK'))">
<Reference Include="System.Security" />
</ItemGroup>
<ItemGroup Condition="$(DefineConstants.Contains('NETSTANDARD'))">
<PackageReference Include="System.Security.Cryptography.ProtectedData">
<Version>8.0.0</Version>
</PackageReference>
<PackageReference Include="Microsoft.Win32.Registry">
<Version>5.0.0</Version>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Gsemac.Core\Gsemac.Core.csproj" />
<ProjectReference Include="..\Gsemac.IO\Gsemac.IO.csproj" />
<ProjectReference Include="..\Gsemac.Net\Gsemac.Net.csproj" />
<ProjectReference Include="..\Gsemac.Text.Ini\Gsemac.Text.Ini.csproj" />
<ProjectReference Include="..\Gsemac.Win32\Gsemac.Win32.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\ExceptionMessages.Designer.cs">
<DesignTime>True</DesignTime>
</Compile>
</ItemGroup>
</Project>