Skip to content

Commit 7f953b6

Browse files
authored
Add EntityFrameworkCore.VisualBasic.Templates
1 parent dc6b681 commit 7f953b6

16 files changed

+690
-30
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<PackageType>Template</PackageType>
5+
<PackageId>EntityFrameworkCore.VisualBasic.Templates</PackageId>
6+
<Authors>Brice Lambson, et al.</Authors>
7+
<Description>
8+
Entity Framework Core templates for dotnet-new.
9+
10+
Enables these commonly used templates:
11+
ef-templates
12+
</Description>
13+
<TargetFramework>netstandard2.0</TargetFramework>
14+
<IncludeContentInPack>true</IncludeContentInPack>
15+
<IncludeBuildOutput>false</IncludeBuildOutput>
16+
<ContentTargetFolders>content</ContentTargetFolders>
17+
<PackageLicenseExpression>Unlicense</PackageLicenseExpression>
18+
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
19+
<Version>7.0.0-alpha.1</Version>
20+
<Copyright>© 2022 Brice Lambson, et al. All rights reserved.</Copyright>
21+
<PackageProjectUrl>https://github.com/efcore/EFCore.VisualBasic</PackageProjectUrl>
22+
<RepositoryUrl>https://github.com/efcore/EFCore.VisualBasic.git</RepositoryUrl>
23+
<RepositoryType>git</RepositoryType>
24+
<PackageTags>EFCore;VB;VisualBasic</PackageTags>
25+
<PackageReleaseNotes>https://github.com/efcore/EFCore.VisualBasic/releases</PackageReleaseNotes>
26+
</PropertyGroup>
27+
28+
<ItemGroup>
29+
<Content Include="templates\**\*" Exclude="templates\**\bin\**;templates\**\obj\**" />
30+
<Compile Remove="**\*" />
31+
</ItemGroup>
32+
33+
</Project>
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"$schema": "http://json.schemastore.org/template",
3+
"author": "Brice Lambson, et al.",
4+
"classifications": [ "EFCore", "Scaffolding" ],
5+
"identity": "EntityFrameworkCore.VisualBasic.Templates.ef-templates",
6+
"groupIdentity": "Microsoft.EntityFrameworkCore.Templates.ef-templates",
7+
"precedence": "7000",
8+
"name": "Entity Framework Core Scaffolding Templates",
9+
"shortName": "ef-templates",
10+
"tags": {
11+
"language": "VB",
12+
"type": "item"
13+
}
14+
}

0 commit comments

Comments
 (0)