Added the files to build a dotnet template

This commit is contained in:
Phallacy
2019-03-03 01:49:02 -08:00
parent 5af09f0fd5
commit 1e38d3a856
6 changed files with 215 additions and 0 deletions
@@ -0,0 +1,21 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>Jellyfin.Plugin.dotnet_template</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Jellyfin.Controller" Version="10.2.0.1" />
<PackageReference Include="Jellyfin.Model" Version="10.2.0.1" />
</ItemGroup>
<ItemGroup>
<None Remove="Configuration\configPage.html" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Configuration\configPage.html" />
</ItemGroup>
</Project>