-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRCaron.targets
23 lines (22 loc) · 1.02 KB
/
RCaron.targets
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<VersionPrefix>0.1.1</VersionPrefix>
<VersionSuffix></VersionSuffix>
<Authors>Jan0660</Authors>
<PackageLicenseExpression>LGPL-3.0-or-later</PackageLicenseExpression>
<RepositoryUrl>https://github.com/Jan0660/RCaron.git</RepositoryUrl>
<PackageProjectUrl>https://rcaron.jan0660.dev</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>icon.png</PackageIcon>
<PackageIconUrl>https://raw.githubusercontent.com/Jan0660/rcaron-vscode/master/icon.png</PackageIconUrl>
</PropertyGroup>
<ItemGroup>
<None Include="../icon.png" Pack="true" PackagePath="\"/>
</ItemGroup>
<ItemGroup Condition="Exists('README.md')">
<None Include="README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
<ItemGroup Condition="!Exists('README.md')">
<None Include="../README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>