-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCopyDirectory.csproj
30 lines (26 loc) · 1.03 KB
/
CopyDirectory.csproj
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
27
28
29
30
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Authors>Marc Kruzik</Authors>
<Description>Copy a complete directory recursively in the most simple way. This is a nuget version of the official Microsoft code example to copy directories.</Description>
<RepositoryUrl>https://github.com/marckruzik/CopyDirectory</RepositoryUrl>
<PackageTags>copydirectory;copyfolder;copy directory;copy folder;folder;io</PackageTags>
<PackageIcon>CopyDirectory.png</PackageIcon>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<version>1.0.3</version>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<None Include="icon\CopyDirectory.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>