forked from a-z-listing/a-z-listing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
a-z-listing.msbuildproj
23 lines (21 loc) · 1.14 KB
/
a-z-listing.msbuildproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Peachpie.NET.Sdk/0.9.44">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>netstandard2.0</TargetFramework>
<Description>A-Z Listing plugin for WordPress (Peachpied.WordPress)</Description>
<AssemblyName>bowlhat.wp-a-z-listing</AssemblyName>
<PackageId>wp-a-z-listing</PackageId>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<Compile Include="**/*.php" Exclude=".git/**;.vscode/**;node_modules/**;obj/**;bin/**;**/tests/**;**/test/**;**/cli/**;**/composer-php52/**" />
<Content Include="README.md;LICENSE;changelog.md;**/*.pot;**/*.js;**/*.css;" Exclude="Gruntfile.js;.git/**;.vscode/**;node_modules/**;obj/**;bin/**;**/tests/**;**/test/**;**/cli/**;**/composer-php52/**" CopyToOutputDirectory="PreserveNewest">
<PackagePath>contentFiles/any/netcoreapp2.0/wordpress/</PackagePath>
<PackageCopyToOutput>true</PackageCopyToOutput>
<Link>wordpress\%(RecursiveDir)%(Filename)%(Extension)</Link>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="PeachPied.WordPress" Version="1.0.0-beta8" />
</ItemGroup>
</Project>