-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
20 lines (17 loc) · 878 Bytes
/
Directory.Build.props
File metadata and controls
20 lines (17 loc) · 878 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Project>
<!-- $(PeachpieVersion) property from the current Peachpie.NET.Sdk -->
<Import Project="Version.props" Sdk="Peachpie.NET.Sdk" Condition=" '$(PeachpieVersion)'=='' " />
<!-- global properties -->
<PropertyGroup>
<PackageProjectUrl>https://github.com/gordon-matt/peachpie-responsive-file-manager</PackageProjectUrl>
<Version>2.0.1</Version>
<Authors>Matt Gordon, Jakub Misek</Authors>
<Company>Matt Gordon</Company>
<PackageIcon>assets/icon.png</PackageIcon>
</PropertyGroup>
<!-- assets -->
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)Misc/icon.png" Pack="true" PackagePath="$(PackageIcon)" />
<!--None Include="$(PackageReadmePath)" Pack="true" PackagePath="$(PackageReadme)" Condition=" Exists('$(PackageReadmePath)') "/-->
</ItemGroup>
</Project>