Skip to content

Commit

Permalink
Converted to .Net Standard 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Turnerj committed Mar 13, 2018
1 parent 0f0f330 commit d452fcc
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 104 deletions.
12 changes: 6 additions & 6 deletions SitemapTools.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,24 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.27428.2002
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TurnerSoftware.SitemapTools", "TurnerSoftware.SitemapTools\TurnerSoftware.SitemapTools.csproj", "{368739A7-4B60-47D2-AAC5-05A30CE3033C}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{B79203C9-7B50-4C91-A0AD-EAA6FBAABD53}"
ProjectSection(SolutionItems) = preProject
LICENSE = LICENSE
README.md = README.md
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TurnerSoftware.SitemapTools", "TurnerSoftware.SitemapTools\TurnerSoftware.SitemapTools.csproj", "{788EF4B5-4FAC-4E83-BBF8-ADC89DEFD512}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{368739A7-4B60-47D2-AAC5-05A30CE3033C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{368739A7-4B60-47D2-AAC5-05A30CE3033C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{368739A7-4B60-47D2-AAC5-05A30CE3033C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{368739A7-4B60-47D2-AAC5-05A30CE3033C}.Release|Any CPU.Build.0 = Release|Any CPU
{788EF4B5-4FAC-4E83-BBF8-ADC89DEFD512}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{788EF4B5-4FAC-4E83-BBF8-ADC89DEFD512}.Debug|Any CPU.Build.0 = Debug|Any CPU
{788EF4B5-4FAC-4E83-BBF8-ADC89DEFD512}.Release|Any CPU.ActiveCfg = Release|Any CPU
{788EF4B5-4FAC-4E83-BBF8-ADC89DEFD512}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
36 changes: 0 additions & 36 deletions TurnerSoftware.SitemapTools/Properties/AssemblyInfo.cs

This file was deleted.

77 changes: 15 additions & 62 deletions TurnerSoftware.SitemapTools/TurnerSoftware.SitemapTools.csproj
Original file line number Diff line number Diff line change
@@ -1,64 +1,17 @@
<?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')" />
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{368739A7-4B60-47D2-AAC5-05A30CE3033C}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>TurnerSoftware.SitemapTools</RootNamespace>
<AssemblyName>TurnerSoftware.SitemapTools</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
<TargetFramework>netstandard2.0</TargetFramework>
<Version>0.1.0</Version>
<Authors>James Turner</Authors>
<Company>Turner Software</Company>
<Description>A collection of tools for fetching and processing sitemap files</Description>
<Copyright>Copyright 2018</Copyright>
<PackageLicenseUrl>https://github.com/TurnerSoftware/SitemapTools/blob/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/TurnerSoftware/SitemapTools</PackageProjectUrl>
<PackageTags>sitemap sitemap.xml</PackageTags>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</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.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="ChangeFrequency.cs" />
<Compile Include="Request\ISitemapRequestService.cs" />
<Compile Include="Request\SitemapRequestService.cs" />
<Compile Include="Reader\ISitemapReader.cs" />
<Compile Include="SitemapEntry.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="SitemapFile.cs" />
<Compile Include="SitemapQuery.cs" />
<Compile Include="SitemapFetchOptions.cs" />
<Compile Include="SitemapType.cs" />
<Compile Include="Reader\XmlSitemapReader.cs" />
</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>

</Project>

0 comments on commit d452fcc

Please sign in to comment.