|
6 | 6 | <AssemblyTitle>FRC Utilities</AssemblyTitle>
|
7 | 7 | <Title>FRC Utilities</Title>
|
8 | 8 | <Authors>RobotDotNet</Authors>
|
9 |
| - <TargetFrameworks>net451;net46;netstandard1.5</TargetFrameworks> |
| 9 | + <TargetFrameworks>net451;net46;netstandard1.3;netstandard1.5</TargetFrameworks> |
10 | 10 | <GenerateDocumentationFile>true</GenerateDocumentationFile>
|
11 | 11 | <AssemblyName>FRC.Utilities</AssemblyName>
|
12 | 12 | <PackageId>FRC.Utilities</PackageId>
|
|
32 | 32 | <Reference Include="Microsoft.CSharp" />
|
33 | 33 | </ItemGroup>
|
34 | 34 |
|
35 |
| - <PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard1.5' "> |
| 35 | + <PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' "> |
36 | 36 | <DefineConstants>$(DefineConstants);NETSTANDARD</DefineConstants>
|
37 | 37 | </PropertyGroup>
|
38 | 38 |
|
| 39 | + <PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard1.5' "> |
| 40 | + <DefineConstants>$(DefineConstants);NETSTANDARD;NETSTANDARD15</DefineConstants> |
| 41 | + </PropertyGroup> |
| 42 | + |
39 | 43 | <PropertyGroup Condition=" '$(TargetFramework)' == 'net46' ">
|
40 | 44 | <DefineConstants>$(DefineConstants);NET46</DefineConstants>
|
41 | 45 | </PropertyGroup>
|
|
44 | 48 | <DefineConstants>$(DefineConstants);NET451</DefineConstants>
|
45 | 49 | </PropertyGroup>
|
46 | 50 |
|
47 |
| - <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.5' "> |
| 51 | + <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' "> |
| 52 | + <Compile Remove="NativeLibraryUtilities\*.cs"/> |
48 | 53 | <PackageReference Include="System.Linq" Version="4.3.0" />
|
49 | 54 | <PackageReference Include="System.Runtime" Version="4.3.0" />
|
50 | 55 | <PackageReference Include="System.Runtime.Extensions" Version="4.3.0" />
|
|
54 | 59 | <PackageReference Include="System.Reflection.Extensions" Version="4.3.0" />
|
55 | 60 | </ItemGroup>
|
56 | 61 |
|
| 62 | + <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.5' "> |
| 63 | + <PackageReference Include="System.Linq" Version="4.3.0" /> |
| 64 | + <PackageReference Include="System.Runtime" Version="4.3.0" /> |
| 65 | + <PackageReference Include="System.Runtime.Extensions" Version="4.3.0" /> |
| 66 | + <PackageReference Include="System.IO.FileSystem" Version="4.3.0" /> |
| 67 | + <PackageReference Include="System.Runtime.InteropServices" Version="4.3.0" /> |
| 68 | + <PackageReference Include="System.Runtime.InteropServices.RuntimeInformation" Version="4.3.0" /> |
| 69 | + <PackageReference Include="System.Reflection.Extensions" Version="4.3.0" /> |
| 70 | + </ItemGroup> |
57 | 71 | </Project>
|
0 commit comments