diff options
| author | stefan <stefan@hegedues.at> | 2018-09-12 19:26:21 +0200 |
|---|---|---|
| committer | stefan <stefan@hegedues.at> | 2018-09-12 19:26:21 +0200 |
| commit | 48facb797ed912e4ea6b04b17d1ff190ac2daac4 (patch) | |
| tree | 8dae77a31670a888d733484cb17dd4077d5444e8 /RSSDP/RSSDP.csproj | |
| parent | c32d8656382a0eacb301692e0084377fc433ae9b (diff) | |
Update to 3.5.2 and .net core 2.1
Diffstat (limited to 'RSSDP/RSSDP.csproj')
| -rw-r--r-- | RSSDP/RSSDP.csproj | 107 |
1 files changed, 11 insertions, 96 deletions
diff --git a/RSSDP/RSSDP.csproj b/RSSDP/RSSDP.csproj index aea144a5a..994e74158 100644 --- a/RSSDP/RSSDP.csproj +++ b/RSSDP/RSSDP.csproj @@ -1,98 +1,13 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> - <PropertyGroup> - <MinimumVisualStudioVersion>11.0</MinimumVisualStudioVersion> - <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> - <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProjectGuid>{21002819-C39A-4D3E-BE83-2A276A77FB1F}</ProjectGuid> - <OutputType>Library</OutputType> - <AppDesignerFolder>Properties</AppDesignerFolder> - <RootNamespace>RSSDP</RootNamespace> - <AssemblyName>RSSDP</AssemblyName> - <DefaultLanguage>en-US</DefaultLanguage> - <FileAlignment>512</FileAlignment> - <TargetFrameworkProfile /> - <TargetFrameworkVersion>v4.6</TargetFrameworkVersion> - </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> +<Project Sdk="Microsoft.NET.Sdk"> + <ItemGroup> - <Compile Include="CustomHttpHeaders.cs" /> - <Compile Include="DeviceAvailableEventArgs.cs" /> - <Compile Include="DeviceEventArgs.cs" /> - <Compile Include="DeviceUnavailableEventArgs.cs" /> - <Compile Include="DiscoveredSsdpDevice.cs" /> - <Compile Include="DisposableManagedObjectBase.cs" /> - <Compile Include="GlobalSuppressions.cs" /> - <Compile Include="HttpParserBase.cs" /> - <Compile Include="HttpRequestParser.cs" /> - <Compile Include="HttpResponseParser.cs" /> - <Compile Include="IEnumerableExtensions.cs" /> - <Compile Include="ISsdpCommunicationsServer.cs" /> - <Compile Include="ISsdpDeviceLocator.cs" /> - <Compile Include="ISsdpDevicePublisher.cs" /> - <Compile Include="IUPnPDeviceValidator.cs" /> - <Compile Include="Properties\AssemblyInfo.cs" /> - <Compile Include="RequestReceivedEventArgs.cs" /> - <Compile Include="ResponseReceivedEventArgs.cs" /> - <Compile Include="SsdpCommunicationsServer.cs" /> - <Compile Include="SsdpConstants.cs" /> - <Compile Include="SsdpDevice.cs" /> - <Compile Include="SsdpDeviceExtensions.cs" /> - <Compile Include="SsdpDeviceIcon.cs" /> - <Compile Include="SsdpDeviceLocator.cs" /> - <Compile Include="SsdpDeviceLocatorBase.cs" /> - <Compile Include="SsdpDeviceProperties.cs" /> - <Compile Include="SsdpDeviceProperty.cs" /> - <Compile Include="SsdpDevicePublisher.cs" /> - <Compile Include="SsdpDevicePublisherBase.cs" /> - <Compile Include="SsdpEmbeddedDevice.cs" /> - <Compile Include="SsdpHelper.cs" /> - <Compile Include="SsdpRootDevice.cs" /> - <Compile Include="UPnP10DeviceValidator.cs" /> + <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj" /> + <ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj" /> </ItemGroup> - <ItemGroup> - <ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj"> - <Project>{9142eefa-7570-41e1-bfcc-468bb571af2f}</Project> - <Name>MediaBrowser.Common</Name> - </ProjectReference> - <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj"> - <Project>{7eeeb4bb-f3e8-48fc-b4c5-70f0fff8329b}</Project> - <Name>MediaBrowser.Model</Name> - </ProjectReference> - <Reference Include="System" /> - <Reference Include="System.Configuration" /> - <Reference Include="System.Core" /> - <Reference Include="System.Runtime.Serialization" /> - <Reference Include="System.Xml.Linq" /> - <Reference Include="System.Data.DataSetExtensions" /> - <Reference Include="Microsoft.CSharp" /> - <Reference Include="System.Data" /> - <Reference Include="System.Net.Http" /> - <Reference Include="System.Xml" /> - </ItemGroup> - <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.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>
\ No newline at end of file + + <PropertyGroup> + <TargetFramework>netcoreapp2.1</TargetFramework> + <GenerateAssemblyInfo>false</GenerateAssemblyInfo> + </PropertyGroup> + +</Project> |
