Skip to content

Commit d27545d

Browse files
committed
#83: port Netlib.Dns to .NET Standard
1 parent 2614d9c commit d27545d

File tree

2 files changed

+11
-99
lines changed

2 files changed

+11
-99
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,93 +1,16 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
33
<PropertyGroup>
4-
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5-
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6-
<ProductVersion>8.0.50727</ProductVersion>
7-
<SchemaVersion>2.0</SchemaVersion>
8-
<ProjectGuid>{40AC7A7C-D3E5-46DF-B740-06BD9D2A00E1}</ProjectGuid>
9-
<OutputType>Library</OutputType>
10-
<AppDesignerFolder>Properties</AppDesignerFolder>
11-
<RootNamespace>JabberNet.Netlib.Dns</RootNamespace>
12-
<AssemblyName>JabberNet.Netlib.Dns</AssemblyName>
13-
<SignAssembly>false</SignAssembly>
14-
<AssemblyOriginatorKeyFile>
15-
</AssemblyOriginatorKeyFile>
16-
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
17-
<FileUpgradeFlags>
18-
</FileUpgradeFlags>
19-
<OldToolsVersion>2.0</OldToolsVersion>
20-
<UpgradeBackupLocation />
21-
<PublishUrl>publish\</PublishUrl>
22-
<Install>true</Install>
23-
<InstallFrom>Disk</InstallFrom>
24-
<UpdateEnabled>false</UpdateEnabled>
25-
<UpdateMode>Foreground</UpdateMode>
26-
<UpdateInterval>7</UpdateInterval>
27-
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
28-
<UpdatePeriodically>false</UpdatePeriodically>
29-
<UpdateRequired>false</UpdateRequired>
30-
<MapFileExtensions>true</MapFileExtensions>
31-
<ApplicationRevision>0</ApplicationRevision>
32-
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
33-
<IsWebBootstrapper>false</IsWebBootstrapper>
34-
<UseApplicationTrust>false</UseApplicationTrust>
35-
<BootstrapperEnabled>true</BootstrapperEnabled>
36-
<TargetFrameworkProfile />
4+
<TargetFramework>netstandard1.3</TargetFramework>
5+
<AssemblyVersion>3.0.0.0</AssemblyVersion>
6+
<FileVersion>3.0.0.0</FileVersion>
7+
<Version>3.0.0-preview1</Version>
378
</PropertyGroup>
38-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
39-
<DebugSymbols>true</DebugSymbols>
40-
<DebugType>full</DebugType>
41-
<Optimize>false</Optimize>
42-
<OutputPath>bin\Debug\</OutputPath>
43-
<DefineConstants>TRACE;DEBUG</DefineConstants>
44-
<ErrorReport>prompt</ErrorReport>
45-
<WarningLevel>4</WarningLevel>
46-
<DocumentationFile>bin\Debug\JabberNet.Netlib.Dns.xml</DocumentationFile>
47-
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
48-
</PropertyGroup>
49-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
50-
<DebugType>pdbonly</DebugType>
51-
<Optimize>true</Optimize>
52-
<OutputPath>bin\Release\</OutputPath>
53-
<DefineConstants>TRACE</DefineConstants>
54-
<ErrorReport>prompt</ErrorReport>
55-
<WarningLevel>4</WarningLevel>
56-
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
57-
<DocumentationFile>bin\Release\JabberNet.Netlib.Dns.xml</DocumentationFile>
58-
</PropertyGroup>
59-
<ItemGroup>
60-
<Reference Include="System" />
61-
<Reference Include="System.Data" />
62-
<Reference Include="System.Xml" />
63-
</ItemGroup>
64-
<ItemGroup>
65-
<Compile Include="dns.cs" />
66-
<Compile Include="Properties\AssemblyInfo.cs" />
67-
</ItemGroup>
9+
6810
<ItemGroup>
69-
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
70-
<Visible>False</Visible>
71-
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
72-
<Install>false</Install>
73-
</BootstrapperPackage>
74-
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
75-
<Visible>False</Visible>
76-
<ProductName>.NET Framework 3.5 SP1</ProductName>
77-
<Install>true</Install>
78-
</BootstrapperPackage>
79-
<BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
80-
<Visible>False</Visible>
81-
<ProductName>Windows Installer 3.1</ProductName>
82-
<Install>true</Install>
83-
</BootstrapperPackage>
11+
<PackageReference Include="System.Collections" Version="4.3.0" />
12+
<PackageReference Include="System.Linq" Version="4.3.0" />
13+
<PackageReference Include="System.Runtime.InteropServices" Version="4.3.0" />
8414
</ItemGroup>
85-
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
86-
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
87-
Other similar extension points exist, see Microsoft.Common.targets.
88-
<Target Name="BeforeBuild">
89-
</Target>
90-
<Target Name="AfterBuild">
91-
</Target>
92-
-->
15+
9316
</Project>

src/JabberNet.Netlib.Dns/Properties/AssemblyInfo.cs

-11
This file was deleted.

0 commit comments

Comments
 (0)