Skip to content
This repository was archived by the owner on Apr 1, 2025. It is now read-only.

Commit 35e3736

Browse files
committed
Version 2.3.0.0
1 parent cbca167 commit 35e3736

File tree

74 files changed

+34
-18
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+34
-18
lines changed

DotNetStandardApi/.NET Standard API.csproj renamed to Api/API.csproj

Lines changed: 18 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,36 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netstandard2.0</TargetFramework>
4+
<TargetFrameworks>netstandard2.0;netcoreapp2.0;net452;net472</TargetFrameworks>
55
<AssemblyName>KoenZomers.OneDrive.Api</AssemblyName>
66
<SignAssembly>true</SignAssembly>
77
<AssemblyOriginatorKeyFile>KoenZomers.OneDrive.Api.snk</AssemblyOriginatorKeyFile>
8-
<Version>2.2.1.0</Version>
8+
<Version>2.3.0.0</Version>
99
<Authors>Koen Zomers</Authors>
1010
<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>
1212
<PackageProjectUrl>https://github.com/KoenZomers/OneDriveAPI</PackageProjectUrl>
1313
<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>
1715
<PackageLicenseUrl>https://github.com/KoenZomers/OneDriveAPI/blob/master/LICENSE.md</PackageLicenseUrl>
1816
<Copyright>Koen Zomers</Copyright>
1917
<RootNamespace>KoenZomers.OneDrive.Api</RootNamespace>
2018
</PropertyGroup>
2119

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+
2234
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
2335
<DocumentationFile>KoenZomers.OneDrive.Api.xml</DocumentationFile>
2436
</PropertyGroup>
@@ -27,8 +39,4 @@
2739
<DocumentationFile>KoenZomers.OneDrive.Api.xml</DocumentationFile>
2840
</PropertyGroup>
2941

30-
<ItemGroup>
31-
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
32-
</ItemGroup>
33-
3442
</Project>
File renamed without changes.

DotNetStandardApi/Entities/GraphApiUploadSessionItemContainer.cs renamed to Api/Entities/GraphApiUploadSessionItemContainer.cs

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)