-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathArrayDeconstructors.Source.nuspec
25 lines (24 loc) · 1.18 KB
/
ArrayDeconstructors.Source.nuspec
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
<?xml version="1.0" encoding="utf-8"?>
<package>
<metadata>
<id>ArrayDeconstructors.Source</id>
<version>1.0.3</version>
<authors>Alexander Zaytsev</authors>
<owners>hazzik</owners>
<license type="expression">MIT</license>
<projectUrl>https://github.com/hazzik/ArrayDeconstructors</projectUrl>
<developmentDependency>true</developmentDependency>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<readme>docs/README.md</readme>
<description><![CDATA[ArrayDeconstructors is a source package which allows you to use new C# 7 deconstruction syntax to deconstruct array into variables:
int[] array = <...>;
var (a,b) = array;]]></description>
<copyright>Alexander Zaytsev © 2017-2022</copyright>
<tags>deconstructor deconstruction array arrays tuple tuples</tags>
</metadata>
<files>
<file src="ArrayDeconstructors.cs.pp" target="content/App_Code/ArrayDeconstructors.cs.pp" />
<file src="ArrayDeconstructors.cs.pp" target="contentFiles/cs/any/ArrayDeconstructors.cs.pp" />
<file src="README.md" target="docs/" />
</files>
</package>