This repository was archived by the owner on Jun 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCodeArts.Net.csproj
More file actions
35 lines (30 loc) · 1.63 KB
/
Copy pathCodeArts.Net.csproj
File metadata and controls
35 lines (30 loc) · 1.63 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks Condition="'$(LibraryFrameworks)'==''">net461;net45;net40;netstandard2.0;netstandard2.1;</TargetFrameworks>
<TargetFrameworks Condition="'$(LibraryFrameworks)'!=''">$(LibraryFrameworks)</TargetFrameworks>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Version>8.1.5</Version>
<Authors>Tiny Lit</Authors>
<Company>Tiny Lit</Company>
<Description>A network communications assistant.</Description>
<PackageLicenseUrl>https://github.com/tinylit/codearts/blob/master/LICENSE.txt</PackageLicenseUrl>
<RepositoryUrl>https://github.com/tinylit/codearts</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Copyright>https://github.com/tinylit/codearts/blob/master/LICENSE.txt</Copyright>
<PackageIconUrl>https://raw.githubusercontent.com/tinylit/codearts/master/codearts.png</PackageIconUrl>
<PackageProjectUrl>https://github.com/tinylit/codearts</PackageProjectUrl>
<RootNamespace>CodeArts</RootNamespace>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\CodeArts\CodeArts.csproj" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net40' Or '$(TargetFramework)' == 'net45' Or '$(TargetFramework)' == 'net461'">
<Reference Include="System.Web" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net45' Or '$(TargetFramework)' == 'net461' Or '$(TargetFramework)' == 'netstandard2.0' Or '$(TargetFramework)' == 'netstandard2.1'">
<PackageReference Include="System.Net.Http">
<Version>4.3.4</Version>
</PackageReference>
</ItemGroup>
</Project>