-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnutri.csproj
31 lines (28 loc) · 1.54 KB
/
nutri.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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<Company>nutri</Company>
<Authors>Paulo Roberto Elias</Authors>
<PackageId>nutri</PackageId>
<Version>1.0.0</Version>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<RootNamespace>nutri</RootNamespace>
<PublishSingleFile Condition="'$(Configuration)' == 'Release'">true</PublishSingleFile>
<RuntimeIdentifier Condition="'$(Configuration)' == 'Release'">win-x86</RuntimeIdentifier>
<OutputType Condition="'$(Configuration)' == 'Release'">Exe</OutputType>
<PublishTrimmed Condition="'$(Configuration)' == 'Release'">true</PublishTrimmed>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="litedb" Version="5.0.5" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.Cookies" Version="2.2.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="3.1.3" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.1" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="3.1.1" Condition="'$(Configuration)' == 'Debug'" />
<PackageReference Include="System.Drawing.Common" Version="4.7.0" />
<PackageReference Include="WebEssentials.AspNetCore.PWA" Version="1.0.59" />
<Watch Include="**\*.js" Exclude="node_modules\**\*;**\*.js.map;obj\**\*;bin\**\*" />
<Watch Include="**\*.cshtml" Exclude="obj\**\*;bin\**\*" />
</ItemGroup>
</Project>