-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOfficeWebDav.csproj
More file actions
26 lines (21 loc) · 979 Bytes
/
OfficeWebDav.csproj
File metadata and controls
26 lines (21 loc) · 979 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<OutputType>Library</OutputType>
<PackageId>OfficeWebDavCorePackage</PackageId>
<PackageVersion>0.2.0</PackageVersion>
<Authors>Triet Ho</Authors>
<Description>Add WebDav abilities to your existing AspNetCore project to allow MS Office apps (Word, Excel, PowerPoint) open and edit documents directly on web site via url</Description>
<IsPackable>true</IsPackable>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Copyright>Triet Ho</Copyright>
<PackageTags>Office WebDav</PackageTags>
<RepositoryUrl>https://github.com/trietho/office-webdav-aspnetcore</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
<Version>0.2.0</Version>
</PropertyGroup>
<ItemGroup>
<None Remove=".DS_Store" />
</ItemGroup>
</Project>