Skip to content

Commit 589a8dc

Browse files
committed
Established nuspec placeholders
This is in preparation for deploying each project as an independent NuGet package, likely via VSTS's Continuous Integration (CI) / Continuous Deployment (CD) capabilities.
1 parent 058ff76 commit 589a8dc

13 files changed

Lines changed: 97 additions & 0 deletions

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ build/
2020
bld/
2121
[Bb]in/
2222
[Oo]bj/
23+
*.nupkg
2324

2425
# Roslyn cache directories
2526
*.ide/

Ignia.Topics.Data.Caching/Ignia.Topics.Data.Caching.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@
147147
</ProjectReference>
148148
</ItemGroup>
149149
<ItemGroup>
150+
<None Include="Ignia.Topics.Data.Caching.nuspec" />
150151
<None Include="packages.config" />
151152
<None Include="README.md" />
152153
</ItemGroup>
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?xml version="1.0"?>
2+
<package >
3+
<metadata>
4+
<id>$id$</id>
5+
<version>$version$</version>
6+
<title>$title$</title>
7+
<authors>$author$</authors>
8+
<owners>JeremyCaney</owners>
9+
<projectUrl>https://github.com/Ignia/Topics-Library</projectUrl>
10+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
11+
<description>$description$</description>
12+
<copyright>$copyright$</copyright>
13+
<tags>C# .NET CMS Caching Data Repository</tags>
14+
</metadata>
15+
</package>

Ignia.Topics.Data.Sql/Ignia.Topics.Data.Sql.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,7 @@
197197
</ProjectReference>
198198
</ItemGroup>
199199
<ItemGroup>
200+
<None Include="Ignia.Topics.Data.Sql.nuspec" />
200201
<None Include="packages.config" />
201202
<None Include="README.md" />
202203
</ItemGroup>
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?xml version="1.0"?>
2+
<package >
3+
<metadata>
4+
<id>$id$</id>
5+
<version>$version$</version>
6+
<title>$title$</title>
7+
<authors>$author$</authors>
8+
<owners>JeremyCaney</owners>
9+
<projectUrl>https://github.com/Ignia/Topics-Library</projectUrl>
10+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
11+
<description>$description$</description>
12+
<copyright>$copyright$</copyright>
13+
<tags>C# .NET CMS SQL Data Repository</tags>
14+
</metadata>
15+
</package>

Ignia.Topics.ViewModels/Ignia.Topics.ViewModels.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@
7878
</ProjectReference>
7979
</ItemGroup>
8080
<ItemGroup>
81+
<None Include="Ignia.Topics.ViewModels.nuspec" />
8182
<None Include="README.md" />
8283
</ItemGroup>
8384
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?xml version="1.0"?>
2+
<package >
3+
<metadata>
4+
<id>$id$</id>
5+
<version>$version$</version>
6+
<title>$title$</title>
7+
<authors>$author$</authors>
8+
<owners>JeremyCaney</owners>
9+
<projectUrl>https://github.com/Ignia/Topics-Library</projectUrl>
10+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
11+
<description>$description$</description>
12+
<copyright>$copyright$</copyright>
13+
<tags>C# .NET View Models POCO</tags>
14+
</metadata>
15+
</package>

Ignia.Topics.Web.Mvc/Ignia.Topics.Web.Mvc.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@
9696
</ProjectReference>
9797
</ItemGroup>
9898
<ItemGroup>
99+
<None Include="Ignia.Topics.Web.Mvc.nuspec" />
99100
<None Include="packages.config" />
100101
<None Include="README.md" />
101102
</ItemGroup>
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?xml version="1.0"?>
2+
<package >
3+
<metadata>
4+
<id>$id$</id>
5+
<version>$version$</version>
6+
<title>$title$</title>
7+
<authors>$author$</authors>
8+
<owners>JeremyCaney</owners>
9+
<projectUrl>https://github.com/Ignia/Topics-Library</projectUrl>
10+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
11+
<description>$description$</description>
12+
<copyright>$copyright$</copyright>
13+
<tags>C# .NET CMS Web MVC ASP.NET Controller</tags>
14+
</metadata>
15+
</package>

Ignia.Topics.Web/Ignia.Topics.Web.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,7 @@
168168
</ProjectReference>
169169
</ItemGroup>
170170
<ItemGroup>
171+
<None Include="Ignia.Topics.Web.nuspec" />
171172
<None Include="packages.config" />
172173
</ItemGroup>
173174
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />

0 commit comments

Comments
 (0)