Luke Latham 2017-08-03 14:59:07 -05:00 коммит произвёл Sayed Ibrahim Hashimi
Родитель d14b7ec708
Коммит 491479a4a8
5 изменённых файлов: 48 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>GarciaSoftware.ConsoleTemplate.CSharp</id>
<version>1.0.0</version>
<description>
Creates the Garcia Software console app.
</description>
<authors>Catalina Garcia</authors>
<packageTypes>
<packageType name="Template" />
</packageTypes>
</metadata>
</package>

Просмотреть файл

@ -0,0 +1,8 @@
{
"$schema": "http://json.schemastore.org/template",
"author": "Catalina Garcia",
"classifications": [ "Common", "Console" ],
"identity": "GarciaSoftware.ConsoleTemplate.CSharp",
"name": "Garcia Software Console Application",
"shortName": "garciaconsole"
}

Просмотреть файл

@ -0,0 +1,12 @@
using System;
namespace content
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}

Просмотреть файл

@ -0,0 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
</PropertyGroup>
</Project>

Просмотреть файл

@ -0,0 +1,6 @@
The sample in this folder demonstrates:
- **How to create a NuGet-packaged template**
See [`GarciaSoftware.ConsoleTemplate.CSharp.nuspec`](./GarciaSoftware.ConsoleTemplate.CSharp/GarciaSoftware.ConsoleTemplate.CSharp.nuspec) and [`template.json`](./GarciaSoftware.ConsoleTemplate.CSharp/content/.template.config/template.json)