|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <TargetFramework>netstandard2.0</TargetFramework> |
| 4 | + <TargetFrameworks>netstandard2.0;netcoreapp2.0;net452;net472</TargetFrameworks> |
5 | 5 | <AssemblyName>KoenZomers.OneDrive.Api</AssemblyName> |
6 | 6 | <SignAssembly>true</SignAssembly> |
7 | 7 | <AssemblyOriginatorKeyFile>KoenZomers.OneDrive.Api.snk</AssemblyOriginatorKeyFile> |
8 | | - <Version>2.2.1.0</Version> |
| 8 | + <Version>2.3.0.0</Version> |
9 | 9 | <Authors>Koen Zomers</Authors> |
10 | 10 | <Company>Koen Zomers</Company> |
11 | | - <Description>API in .NET Standard to communicate with OneDrive Personal and OneDrive for Business</Description> |
| 11 | + <Description>API in .NET Standard 2.0, .NET Framework 4.5.2, .NET Framework 4.7.2 and .NET Core 2.0 to communicate with OneDrive Personal and OneDrive for Business</Description> |
12 | 12 | <PackageProjectUrl>https://github.com/KoenZomers/OneDriveAPI</PackageProjectUrl> |
13 | 13 | <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
14 | | - <PackageReleaseNotes>- Added several UpdateFile methods to allow for updating the contents of an existing file. The normal UploadFile throws an exception in some cases if you try to upload a file to the same location, especially when the item is shared with the user and resides on another drive. To aid in that scenario, use the UpdateFile methods |
15 | | -- Added OneDriveSharedItem entity which will expose information on the owner of a shared item |
16 | | -- Several smaller fixes</PackageReleaseNotes> |
| 14 | + <PackageReleaseNotes>- Recompiled to support multi platform being: .NET Standard 2.0, .NET Framework 4.5.2, .NET Framework 4.7.2 and .NET Core 2.0</PackageReleaseNotes> |
17 | 15 | <PackageLicenseUrl>https://github.com/KoenZomers/OneDriveAPI/blob/master/LICENSE.md</PackageLicenseUrl> |
18 | 16 | <Copyright>Koen Zomers</Copyright> |
19 | 17 | <RootNamespace>KoenZomers.OneDrive.Api</RootNamespace> |
20 | 18 | </PropertyGroup> |
21 | 19 |
|
| 20 | + <ItemGroup Condition=" '$(TargetFramework)' == 'net452' "> |
| 21 | + <Reference Include="System.Net.Http" /> |
| 22 | + <Reference Include="System.Web" /> |
| 23 | + </ItemGroup> |
| 24 | + |
| 25 | + <ItemGroup Condition=" '$(TargetFramework)' == 'net472' "> |
| 26 | + <Reference Include="System.Net.Http" /> |
| 27 | + <Reference Include="System.Web" /> |
| 28 | + </ItemGroup> |
| 29 | + |
| 30 | + <ItemGroup> |
| 31 | + <PackageReference Include="Newtonsoft.Json" Version="11.0.1" /> |
| 32 | + </ItemGroup> |
| 33 | + |
22 | 34 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
23 | 35 | <DocumentationFile>KoenZomers.OneDrive.Api.xml</DocumentationFile> |
24 | 36 | </PropertyGroup> |
|
27 | 39 | <DocumentationFile>KoenZomers.OneDrive.Api.xml</DocumentationFile> |
28 | 40 | </PropertyGroup> |
29 | 41 |
|
30 | | - <ItemGroup> |
31 | | - <PackageReference Include="Newtonsoft.Json" Version="12.0.1" /> |
32 | | - </ItemGroup> |
33 | | - |
34 | 42 | </Project> |
0 commit comments