-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Marco
authored and
Marco
committed
Jan 1, 2019
1 parent
5576a20
commit c5e3a87
Showing
4 changed files
with
51 additions
and
126 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,128 +1,45 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<!-- RDFSharp project properties --> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<ProductVersion>9.0.30729</ProductVersion> | ||
<SchemaVersion>2.0</SchemaVersion> | ||
<ProjectGuid>{1EEA1A7E-A661-4745-810E-FBEB9F20B6FC}</ProjectGuid> | ||
<OutputType>Library</OutputType> | ||
<AppDesignerFolder>Properties</AppDesignerFolder> | ||
<RootNamespace>RDFSharp</RootNamespace> | ||
<AssemblyTitle>RDFSharp</AssemblyTitle> | ||
<AssemblyName>RDFSharp</AssemblyName> | ||
<AssemblyVersion>$(Version)</AssemblyVersion> | ||
<Version>2.0.0.0</Version> | ||
<Authors>Marco De Salvo</Authors> | ||
<Copyright>Marco De Salvo</Copyright> | ||
<Description>Start playing with RDF!</Description> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<SignAssembly>false</SignAssembly> | ||
<Product>RDFSharp</Product> | ||
</PropertyGroup> | ||
<!-- RDFSharp build configurations --> | ||
|
||
<PropertyGroup Condition="'$(Configuration)'=='Debug'"> | ||
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion> | ||
<Platform>AnyCPU</Platform> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>full</DebugType> | ||
<Optimize>false</Optimize> | ||
<OutputPath>bin\Debug\</OutputPath> | ||
<DefineConstants>DEBUG;TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<OutputPath>bin\Debug\</OutputPath> | ||
<DocumentationFile>bin\Debug\netstandard2.0\RDFSharp.xml</DocumentationFile> | ||
<WarningLevel>4</WarningLevel> | ||
<NoWarn>1591</NoWarn> | ||
<DocumentationFile>bin\Debug\RDFSharp.xml</DocumentationFile> | ||
<TreatWarningsAsErrors>false</TreatWarningsAsErrors> | ||
<WarningsAsErrors /> | ||
<NoWarn /> | ||
<DebugType>full</DebugType> | ||
<DebugSymbols>true</DebugSymbols> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)'=='Release'"> | ||
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion> | ||
<Platform>AnyCPU</Platform> | ||
<DebugType>none</DebugType> | ||
<Optimize>true</Optimize> | ||
<DefineConstants>TRACE</DefineConstants> | ||
<OutputPath>bin\Release\</OutputPath> | ||
<ErrorReport>prompt</ErrorReport> | ||
<DocumentationFile>bin\Release\netstandard2.0\RDFSharp.xml</DocumentationFile> | ||
<WarningLevel>0</WarningLevel> | ||
<NoWarn>1591</NoWarn> | ||
<DocumentationFile>bin\Release\RDFSharp.xml</DocumentationFile> | ||
<TreatWarningsAsErrors>false</TreatWarningsAsErrors> | ||
<WarningsAsErrors /> | ||
<NoWarn /> | ||
<DebugType>none</DebugType> | ||
<Optimize>true</Optimize> | ||
</PropertyGroup> | ||
<!-- Microsoft .NET references --> | ||
<ItemGroup> | ||
<Reference Include="System" /> | ||
<Reference Include="System.Core" /> | ||
<Reference Include="System.Data" /> | ||
<Reference Include="System.Data.DataSetExtensions" /> | ||
<Reference Include="System.Web" /> | ||
<Reference Include="System.Xml" /> | ||
<Reference Include="System.Xml.Linq" /> | ||
</ItemGroup> | ||
<!-- RDFSharp --> | ||
|
||
<ItemGroup> | ||
<!-- AssemblyInfo --> | ||
<Compile Include="Properties\AssemblyInfo.cs" /> | ||
<!-- Model --> | ||
<Compile Include="Model\RDFCollection.cs" /> | ||
<Compile Include="Model\RDFContainer.cs" /> | ||
<Compile Include="Model\RDFDataSource.cs" /> | ||
<Compile Include="Model\RDFGraph.cs" /> | ||
<Compile Include="Model\RDFGraphIndex.cs" /> | ||
<Compile Include="Model\RDFLiteral.cs" /> | ||
<Compile Include="Model\RDFModelEnums.cs" /> | ||
<Compile Include="Model\RDFModelEvents.cs" /> | ||
<Compile Include="Model\RDFModelException.cs" /> | ||
<Compile Include="Model\RDFModelUtilities.cs" /> | ||
<Compile Include="Model\RDFNamespace.cs" /> | ||
<Compile Include="Model\RDFNamespaceRegister.cs" /> | ||
<Compile Include="Model\RDFPlainLiteral.cs" /> | ||
<Compile Include="Model\RDFResource.cs" /> | ||
<Compile Include="Model\RDFTriple.cs" /> | ||
<Compile Include="Model\RDFTypedLiteral.cs" /> | ||
<Compile Include="Model\RDFVocabulary.cs" /> | ||
<Compile Include="Model\Serializers\RDFNTriples.cs" /> | ||
<Compile Include="Model\Serializers\RDFTriX.cs" /> | ||
<Compile Include="Model\Serializers\RDFTurtle.cs" /> | ||
<Compile Include="Model\Serializers\RDFXml.cs" /> | ||
<!-- Query --> | ||
<Compile Include="Query\RDFFilter.cs" /> | ||
<Compile Include="Query\RDFModifier.cs" /> | ||
<Compile Include="Query\RDFPattern.cs" /> | ||
<Compile Include="Query\RDFPatternGroup.cs" /> | ||
<Compile Include="Query\RDFPatternMember.cs" /> | ||
<Compile Include="Query\RDFQuery.cs" /> | ||
<Compile Include="Query\RDFQueryEngine.cs" /> | ||
<Compile Include="Query\RDFQueryEnums.cs" /> | ||
<Compile Include="Query\RDFQueryEvents.cs" /> | ||
<Compile Include="Query\RDFQueryException.cs" /> | ||
<Compile Include="Query\RDFQueryUtilities.cs" /> | ||
<Compile Include="Query\RDFVariable.cs" /> | ||
<Compile Include="Query\Filters\RDFBooleanAndFilter.cs" /> | ||
<Compile Include="Query\Filters\RDFBooleanNotFilter.cs" /> | ||
<Compile Include="Query\Filters\RDFBooleanOrFilter.cs" /> | ||
<Compile Include="Query\Filters\RDFBoundFilter.cs" /> | ||
<Compile Include="Query\Filters\RDFComparisonFilter.cs" /> | ||
<Compile Include="Query\Filters\RDFDatatypeFilter.cs" /> | ||
<Compile Include="Query\Filters\RDFIsBlankFilter.cs" /> | ||
<Compile Include="Query\Filters\RDFIsLiteralFilter.cs" /> | ||
<Compile Include="Query\Filters\RDFIsUriFilter.cs" /> | ||
<Compile Include="Query\Filters\RDFLangMatchesFilter.cs" /> | ||
<Compile Include="Query\Filters\RDFRegexFilter.cs" /> | ||
<Compile Include="Query\Filters\RDFSameTermFilter.cs" /> | ||
<Compile Include="Query\Modifiers\RDFDistinctModifier.cs" /> | ||
<Compile Include="Query\Modifiers\RDFLimitModifier.cs" /> | ||
<Compile Include="Query\Modifiers\RDFOffsetModifier.cs" /> | ||
<Compile Include="Query\Modifiers\RDFOrderByModifier.cs" /> | ||
<Compile Include="Query\Queries\Ask\RDFAskQuery.cs" /> | ||
<Compile Include="Query\Queries\Ask\RDFAskQueryResult.cs" /> | ||
<Compile Include="Query\Queries\Construct\RDFConstructQuery.cs" /> | ||
<Compile Include="Query\Queries\Construct\RDFConstructQueryResult.cs" /> | ||
<Compile Include="Query\Queries\Describe\RDFDescribeQuery.cs" /> | ||
<Compile Include="Query\Queries\Describe\RDFDescribeQueryResult.cs" /> | ||
<Compile Include="Query\Queries\Select\RDFSelectQuery.cs" /> | ||
<Compile Include="Query\Queries\Select\RDFSelectQueryResult.cs" /> | ||
<!-- Store --> | ||
<Compile Include="Store\RDFContext.cs" /> | ||
<Compile Include="Store\RDFFederation.cs" /> | ||
<Compile Include="Store\RDFQuadruple.cs" /> | ||
<Compile Include="Store\RDFStore.cs" /> | ||
<Compile Include="Store\RDFStoreEnums.cs" /> | ||
<Compile Include="Store\RDFStoreEvents.cs" /> | ||
<Compile Include="Store\RDFStoreException.cs" /> | ||
<Compile Include="Store\RDFStoreIndex.cs" /> | ||
<Compile Include="Store\RDFStoreUtilities.cs" /> | ||
<Compile Include="Store\Engines\RDFMemoryStore.cs" /> | ||
<Compile Include="Store\Engines\RDFSQLServerStore.cs" /> | ||
<Compile Include="Store\Serializers\RDFNQuads.cs" /> | ||
<Compile Include="Store\Serializers\RDFTriX.cs" /> | ||
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" /> | ||
<PackageReference Include="System.Data.SqlClient" Version="4.6.0" /> | ||
</ItemGroup> | ||
<!-- MSBuild --> | ||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | ||
</Project> | ||
|
||
</Project> |
c5e3a87
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#38 Migration to netstandard2.0