Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EntityFrameworkCore.VisualBasic.Templates #83

Merged
merged 6 commits into from
Nov 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions EFCore.VisualBasic.Templates/EFCore.VisualBasic.Templates.vbproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<PackageType>Template</PackageType>
<PackageId>EntityFrameworkCore.VisualBasic.Templates</PackageId>
<Authors>Brice Lambson, et al.</Authors>
<Description>
Entity Framework Core templates for dotnet-new.

Enables these commonly used templates:
ef-templates
</Description>
<TargetFramework>netstandard2.0</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<PackageLicenseExpression>Unlicense</PackageLicenseExpression>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Version>7.0.0-alpha.1</Version>
<Copyright>© 2022 Brice Lambson, et al. All rights reserved.</Copyright>
<PackageProjectUrl>https://github.com/efcore/EFCore.VisualBasic</PackageProjectUrl>
<RepositoryUrl>https://github.com/efcore/EFCore.VisualBasic.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>EFCore;VB;VisualBasic</PackageTags>
<PackageReleaseNotes>https://github.com/efcore/EFCore.VisualBasic/releases</PackageReleaseNotes>
</PropertyGroup>

<ItemGroup>
<Content Include="templates\**\*" Exclude="templates\**\bin\**;templates\**\obj\**" />
<Compile Remove="**\*" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"$schema": "http://json.schemastore.org/template",
"author": "Brice Lambson, et al.",
"classifications": [ "EFCore", "Scaffolding" ],
"identity": "EntityFrameworkCore.VisualBasic.Templates.ef-templates",
"groupIdentity": "Microsoft.EntityFrameworkCore.Templates.ef-templates",
"precedence": "7000",
"name": "Entity Framework Core Scaffolding Templates",
"shortName": "ef-templates",
"tags": {
"language": "VB",
"type": "item"
}
}
Loading