This repository has been archived by the owner on Feb 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9a91abf
commit 896ef50
Showing
1 changed file
with
33 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,34 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<PackageVersion>6.1.0</PackageVersion> | ||
<PackageType>Template</PackageType> | ||
<PackageId>MongoWebApiStarter</PackageId> | ||
<Title>MongoDB Web Api Starter</Title> | ||
<Authors>Ryan Gunner</Authors> | ||
<Description>A full-featured starter template for "dotnet new" to quickly scaffold a .Net 5 Web-Api project with MongoDB as the data store.</Description> | ||
<PackageTags>dotnet-new;templates;mongodb;web-api;net5;aspnet,servicestack</PackageTags> | ||
<TargetFramework>net5.0</TargetFramework> | ||
<IncludeContentInPack>true</IncludeContentInPack> | ||
<IncludeBuildOutput>false</IncludeBuildOutput> | ||
<ContentTargetFolders>content</ContentTargetFolders> | ||
<PackageProjectUrl>https://github.com/dj-nitehawk/MongoWebApiStarter</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/dj-nitehawk/MongoWebApiStarter</RepositoryUrl> | ||
<PackageReleaseNotes>- make data classes static | ||
- auto bind claim values from jwt token with [From] attribute | ||
- update vsix</PackageReleaseNotes> | ||
<PackageLicenseFile>LICENSE</PackageLicenseFile> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Content Include="Template\**\*" Exclude="Template\**\bin\**;Template\**\obj\**" /> | ||
<Compile Remove="**\*" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Include="LICENSE"> | ||
<Pack>True</Pack> | ||
<PackagePath></PackagePath> | ||
</None> | ||
</ItemGroup> | ||
|
||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<PackageVersion>6.2.0</PackageVersion> | ||
<PackageType>Template</PackageType> | ||
<PackageId>MongoWebApiStarter</PackageId> | ||
<Title>MongoDB Web Api Starter</Title> | ||
<Authors>Ryan Gunner</Authors> | ||
<Description>A full-featured starter template for "dotnet new" to quickly scaffold a .Net 5 Web-Api project with MongoDB as the data store.</Description> | ||
<PackageTags>dotnet-new;templates;mongodb;web-api;net5;aspnet,servicestack</PackageTags> | ||
<TargetFramework>net5.0</TargetFramework> | ||
<IncludeContentInPack>true</IncludeContentInPack> | ||
<IncludeBuildOutput>false</IncludeBuildOutput> | ||
<ContentTargetFolders>content</ContentTargetFolders> | ||
<PackageProjectUrl>https://github.com/dj-nitehawk/MongoWebApiStarter</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/dj-nitehawk/MongoWebApiStarter</RepositoryUrl> | ||
<PackageReleaseNotes>- new notification system | ||
- upgrade packages</PackageReleaseNotes> | ||
<PackageLicenseFile>LICENSE</PackageLicenseFile> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Content Include="Template\**\*" Exclude="Template\**\bin\**;Template\**\obj\**" /> | ||
<Compile Remove="**\*" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Include="LICENSE"> | ||
<Pack>True</Pack> | ||
<PackagePath></PackagePath> | ||
</None> | ||
</ItemGroup> | ||
|
||
</Project> |