Skip to content

Commit

Permalink
Updated to 2017
Browse files Browse the repository at this point in the history
  • Loading branch information
mcintyre321 committed Apr 22, 2017
1 parent 4f617d0 commit c9e8241
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 65 deletions.
16 changes: 8 additions & 8 deletions LinqToAnything.sln
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
# Visual Studio 15
VisualStudioVersion = 15.0.26228.10
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{F26FA645-A6E9-486D-B3D7-48D0E9385BBA}"
ProjectSection(SolutionItems) = preProject
README.md = README.md
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LinqToAnything.Tests", "LinqToAnything.Tests\LinqToAnything.Tests.csproj", "{B592565D-E3BF-406D-A0DA-F508DBEC7854}"
ProjectSection(ProjectDependencies) = postProject
{0944BE53-451C-403A-A1DE-4696EA831166} = {0944BE53-451C-403A-A1DE-4696EA831166}
EndProjectSection
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "LinqToAnything", "LinqToAnything\LinqToAnything.xproj", "{0944BE53-451C-403A-A1DE-4696EA831166}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{F26FA645-A6E9-486D-B3D7-48D0E9385BBA}"
ProjectSection(SolutionItems) = preProject
README.md = README.md
EndProjectSection
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LinqToAnything", "LinqToAnything\LinqToAnything.csproj", "{0944BE53-451C-403A-A1DE-4696EA831166}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
39 changes: 39 additions & 0 deletions LinqToAnything/LinqToAnything.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Description>Turn any data source into an IQueryable</Description>
<Copyright>Harry McIntyre</Copyright>
<AssemblyTitle>LinqToAnything</AssemblyTitle>
<Authors>Harry McIntyre @mcintyre321</Authors>
<TargetFrameworks>netstandard1.6;net451</TargetFrameworks>
<AssemblyName>LinqToAnything</AssemblyName>
<PackageId>LinqToAnything</PackageId>
<PackageTags>LINQ, Expression, IQueryable, Provider</PackageTags>
<PackageProjectUrl>https://github.com/mcintyre321/LinqToAnything</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/mcintyre321/LinqToAnything/blob/master/LICENSE.md</PackageLicenseUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/mcintyre321/LinqToAnything.git</RepositoryUrl>
<PackageTargetFallback Condition=" '$(TargetFramework)' == 'netstandard1.6' ">$(PackageTargetFallback);dnxcore50</PackageTargetFallback>
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute>
<GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="QueryInterceptor.Core" Version="1.0.5" />
<PackageReference Include="System.Linq.Dynamic.Core" Version="1.0.6.8" />
<PackageReference Include="System.Reflection" Version="4.3.0" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net451' ">
<Reference Include="System" />
<Reference Include="Microsoft.CSharp" />
</ItemGroup>

<ItemGroup>
<DotNetCliToolReference Include="dotnet-version" Version="1.1.0" />
</ItemGroup>

</Project>
21 changes: 0 additions & 21 deletions LinqToAnything/LinqToAnything.xproj

This file was deleted.

36 changes: 0 additions & 36 deletions LinqToAnything/project.json

This file was deleted.

0 comments on commit c9e8241

Please sign in to comment.