Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Convert to .Net Core 2.0 #30

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .nuget/NuGet.Config

This file was deleted.

Binary file removed .nuget/NuGet.exe
Binary file not shown.
153 changes: 0 additions & 153 deletions .nuget/NuGet.targets

This file was deleted.

4 changes: 0 additions & 4 deletions .nuget/packages.config

This file was deleted.

36 changes: 0 additions & 36 deletions SyslogNet.Client.Tests/Properties/AssemblyInfo.cs

This file was deleted.

6 changes: 3 additions & 3 deletions SyslogNet.Client.Tests/StructuredDataElementTests.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using System.Collections.Generic;
using Xunit;

namespace SyslogNet.Client.Tests
{
using System.Collections.Generic;
using Xunit;

public class StructuredDataElementTests
{
[Fact]
Expand Down
88 changes: 21 additions & 67 deletions SyslogNet.Client.Tests/SyslogNet.Client.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,74 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{2D6094E8-8483-4B91-9D5E-BF98B070763F}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<TargetFramework>netcoreapp2.0</TargetFramework>
<RootNamespace>SyslogNet.Client.Tests</RootNamespace>
<AssemblyName>SyslogNet.Client.Tests</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
<RestorePackages>true</RestorePackages>
<PackageId>SyslogNet.Client.Tests</PackageId>
<Version>1.1.0</Version>
<Authors>Andrew Smith, Jacob Reimers</Authors>
<Company>SyslogNet</Company>
<Product>SyslogNet</Product>
<Copyright>Copyright © Andrew Smith 2013</Copyright>
<RepositoryType>git</RepositoryType>
<PackageTags>Syslog</PackageTags>
<PackageReleaseNotes>Converted to netstandard.</PackageReleaseNotes>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<Description>.Net Syslog client. Supports both RFC 3164 and RFC 5424 Syslog standards as well as UDP and encrypted TCP transport.</Description>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
<Reference Include="xunit">
<HintPath>..\packages\xunit.1.9.1\lib\net20\xunit.dll</HintPath>
</Reference>
<Reference Include="xunit.extensions">
<HintPath>..\packages\xunit.extensions.1.9.1\lib\net20\xunit.extensions.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="StructuredDataElementTests.cs" />
<Compile Include="Serialization\SyslogRfc3164MessageSerializerTests.cs" />
<Compile Include="Serialization\SyslogSerializerExtensionsForTests.cs" />
<Compile Include="Serialization\SyslogRfc5424MessageSerializerTests.cs" />
<Compile Include="Serialization\SyslogLocalMessageSerializerTests.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>

<ItemGroup>
<None Include="packages.config" />
<PackageReference Include="xunit" Version="2.3.0-beta5-build3769" />
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.0-beta5-build3769" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\SyslogNet.Client\SyslogNet.Client.csproj">
<Project>{F94B72CD-DA67-436E-9244-FA79DF140E0A}</Project>
<Name>SyslogNet.Client</Name>
</ProjectReference>
<ProjectReference Include="..\SyslogNet.Client\SyslogNet.Client.csproj" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

</Project>
24 changes: 0 additions & 24 deletions SyslogNet.Client.nuspec

This file was deleted.

35 changes: 0 additions & 35 deletions SyslogNet.Client/Properties/AssemblyInfo.cs

This file was deleted.

Loading