|
1 | | -<Project Sdk="Microsoft.NET.Sdk"> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | 4 | <TargetFramework>netstandard2.0</TargetFramework> |
5 | 5 | <AssemblyName>KoenZomers.OneDrive.Api</AssemblyName> |
6 | 6 | <SignAssembly>true</SignAssembly> |
7 | 7 | <AssemblyOriginatorKeyFile>KoenZomers.OneDrive.Api.snk</AssemblyOriginatorKeyFile> |
8 | | - <Version>2.2.0.0</Version> |
| 8 | + <Version>2.2.1.0</Version> |
9 | 9 | <Authors>Koen Zomers</Authors> |
10 | 10 | <Company>Koen Zomers</Company> |
11 | 11 | <Description>API in .NET Standard 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>- Converted the API from the .NET Framework to .NET Standard 2.0 so it can also be used on non Windows environments |
15 | | -- Upgraded to use Newtonsoft JSON 12.0.1 |
16 | | -- Upgraded the Demo Application to use a proper namespace and be compiled against the .NET Framework 4.6.2 instead of 4.5.2 |
17 | | -</PackageReleaseNotes> |
| 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> |
18 | 17 | <PackageLicenseUrl>https://github.com/KoenZomers/OneDriveAPI/blob/master/LICENSE.md</PackageLicenseUrl> |
19 | 18 | <Copyright>Koen Zomers</Copyright> |
| 19 | + <RootNamespace>KoenZomers.OneDrive.Api</RootNamespace> |
20 | 20 | </PropertyGroup> |
21 | 21 |
|
22 | 22 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
23 | | - <DocumentationFile>C:\Code\GitHub\OneDriveAPI\DotNetStandardApi\KoenZomers.OneDrive.Api.xml</DocumentationFile> |
| 23 | + <DocumentationFile>KoenZomers.OneDrive.Api.xml</DocumentationFile> |
24 | 24 | </PropertyGroup> |
25 | 25 |
|
26 | 26 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> |
27 | | - <DocumentationFile>C:\Code\GitHub\OneDriveAPI\DotNetStandardApi\KoenZomers.OneDrive.Api.xml</DocumentationFile> |
| 27 | + <DocumentationFile>KoenZomers.OneDrive.Api.xml</DocumentationFile> |
28 | 28 | </PropertyGroup> |
29 | 29 |
|
30 | 30 | <ItemGroup> |
|
0 commit comments