-
Notifications
You must be signed in to change notification settings - Fork 0
/
LogicReinc.Asp.csproj
35 lines (29 loc) · 1.23 KB
/
LogicReinc.Asp.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<PackageId>LogicReinc.Asp</PackageId>
<Version>0.1.4</Version>
<Authors>LogicReinc</Authors>
<Title>LogicReinc.Asp</Title>
<Description>A Wrapper framework around ASP.NET Core 3 that is less verbose, offering various build in features such as automatic javascript api binding, authentication and websockets.
</Description>
<IsPackable>true</IsPackable>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<TargetFramework>netcoreapp3.1</TargetFramework>
<OutputType>Library</OutputType>
<RepositoryUrl>https://github.com/LogicReinc/LogicReinc.Asp</RepositoryUrl>
<PackageProjectUrl>https://github.com/LogicReinc/LogicReinc.Asp</PackageProjectUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageReleaseNotes>Fix up Sync & Features</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<None Remove="Scripts\Sync.js" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Scripts\Sync.js">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.7.1" />
</ItemGroup>
</Project>