Skip to content

Commit 2348f0e

Browse files
committed
.gitignore was inadvertently ignoring the template NuSpec
1 parent 4624929 commit 2348f0e

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ _old/
22
src/SharedAssemblyVersionInfo.cs
33
*.nupkg
44
src/**/*.nuspec
5+
!src/template.nuspec
56
site/jekyll/_site
67

78
## Ignore Visual Studio temporary files, build results, and

src/template.nuspec

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0"?>
2+
<!--
3+
Copyright (c) 2014, Facebook, Inc.
4+
All rights reserved.
5+
6+
This source code is licensed under the BSD-style license found in the
7+
LICENSE file in the root directory of this source tree. An additional grant
8+
of patent rights can be found in the PATENTS file in the same directory.
9+
-->
10+
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
11+
<metadata>
12+
<id>$id$</id>
13+
<version>$version$</version>
14+
<authors>Daniel Lo Nigro</authors>
15+
<owners>Daniel Lo Nigro</owners>
16+
<licenseUrl>https://github.com/reactjs/React.NET#licence</licenseUrl>
17+
<projectUrl>http://reactjs.net/</projectUrl>
18+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
19+
<iconUrl>http://facebook.github.io/react/img/logo_og.png</iconUrl>
20+
<copyright>Copyright 2014 Facebook, Inc</copyright>
21+
<tags>asp.net mvc asp jquery javascript js react facebook reactjs</tags>
22+
</metadata>
23+
</package>

0 commit comments

Comments
 (0)