Skip to content

Commit b38e614

Browse files
committed
Include .pp file into contentFiles folder to allow working with new SDK project format
1 parent 781c865 commit b38e614

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

ArrayDeconstructors.Source.nuspec

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
2+
<package>
33
<metadata>
44
<id>ArrayDeconstructors.Source</id>
5-
<version>1.0.1</version>
5+
<version>1.0.2</version>
66
<authors>Alexander Zaytsev</authors>
77
<owners>hazzik</owners>
88
<licenseUrl>https://opensource.org/licenses/MIT</licenseUrl>
99
<requireLicenseAcceptance>false</requireLicenseAcceptance>
10-
<description>ArrayDeconstructors is a source package which allows you to use new C# 7 deconstruction syntax to deconstruct array into variables:
10+
<description><![CDATA[ArrayDeconstructors is a source package which allows you to use new C# 7 deconstruction syntax to deconstruct array into variables:
1111
1212
int[] array = <...>;
13-
var (a,b) = array;</description>
13+
var (a,b) = array;]]></description>
1414
<copyright>Alexander Zaytsev © 2017</copyright>
1515
<tags>deconstructor deconstruction array arrays</tags>
1616
</metadata>
1717
<files>
18-
<file src="ArrayDeconstructors.cs.pp" target="content\App_Code\ArrayDeconstructors.cs.pp" />
18+
<file src="ArrayDeconstructors.cs.pp" target="content/App_Code/ArrayDeconstructors.cs.pp" />
19+
<file src="ArrayDeconstructors.cs.pp" target="contentFiles/cs/any/ArrayDeconstructors.cs.pp" />
1920
</files>
2021
</package>

0 commit comments

Comments
 (0)