|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | | - |
4 | | - <PropertyGroup Condition="'$(Configuration)' != 'Debug_SingleTarget'"> |
5 | | - <TargetFrameworks>netstandard2.0;net45;netcoreapp2.0</TargetFrameworks> |
6 | | - </PropertyGroup> |
7 | | - <PropertyGroup Condition="'$(Configuration)' == 'Debug_SingleTarget'"> |
8 | | - <TargetFramework>netstandard2.0</TargetFramework> |
9 | | - </PropertyGroup> |
10 | | - |
11 | 3 | <PropertyGroup> |
| 4 | + <TargetFrameworks>netstandard2.0;net45</TargetFrameworks> |
12 | 5 | <PackageId>CSF.ORM.Entities</PackageId> |
13 | 6 | <Authors>craigfowler</Authors> |
14 | 7 | <Title>ORM abstractions: Entity integration</Title> |
15 | 8 | <Description>An integration between CSF.ORM and CSF.Entities, providing convenience functionality for projects which use both.</Description> |
16 | | - <ReleaseVersion>3.0.0</ReleaseVersion> |
| 9 | + <ReleaseVersion>3.0.1</ReleaseVersion> |
17 | 10 | <Version>$(ReleaseVersion)</Version> |
18 | 11 | <PackageVersion>$(ReleaseVersion)</PackageVersion> |
19 | 12 | <PackageLicenseExpression>MIT</PackageLicenseExpression> |
|
25 | 18 | <RootNamespace>CSF.ORM</RootNamespace> |
26 | 19 | </PropertyGroup> |
27 | 20 |
|
28 | | - <Import Project="..\Tools\EnableNet45BuildOnUnix.targets" /> |
| 21 | + <ItemGroup> |
| 22 | + <PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.0" PrivateAssets="All" Condition="'$(TargetFramework.TrimEnd(`0123456789`))' == 'net'" /> |
| 23 | + </ItemGroup> |
29 | 24 |
|
30 | 25 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |
31 | 26 | <DocumentationFile>bin\$(Configuration)\$(TargetFramework)\CSF.ORM.Entities.xml</DocumentationFile> |
|
35 | 30 | <DebugType></DebugType> |
36 | 31 | <DocumentationFile>bin\$(Configuration)\$(TargetFramework)\CSF.ORM.Entities.xml</DocumentationFile> |
37 | 32 | </PropertyGroup> |
38 | | - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug_SingleTarget|AnyCPU' "> |
39 | | - <DocumentationFile>bin\$(Configuration)\$(TargetFramework)\CSF.ORM.Entities.xml</DocumentationFile> |
40 | | - <CheckForOverflowUnderflow>true</CheckForOverflowUnderflow> |
41 | | - </PropertyGroup> |
42 | 33 | <ItemGroup> |
43 | 34 | <ProjectReference Include="..\CSF.Entities\CSF.Entities.csproj" /> |
44 | 35 | <ProjectReference Include="..\CSF.ORM\CSF.ORM.csproj" /> |
|
0 commit comments