-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBemol.csproj
40 lines (35 loc) · 1.41 KB
/
Bemol.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
36
37
38
39
40
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<Title>Bemol</Title>
<Version>1.1.0-alpha</Version>
<Description>A simple web framework for C#.</Description>
<Authors>Tommy Josepovic</Authors>
<IsPackable>true</IsPackable>
<DefaultItemExcludes>$(DefaultItemExcludes);test\**;debug\**</DefaultItemExcludes>
<Nullable>enable</Nullable>
<PackageId>Bemol</PackageId>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageIcon>icon256.png</PackageIcon>
<PackageProjectUrl>https://bemol-docs.web.app/</PackageProjectUrl>
</PropertyGroup>
<!-- Nuget files -->
<ItemGroup>
<None Include="LICENSE" Pack="true" PackagePath="" />
<None Include="icon256.png" Pack="true" PackagePath="" />
</ItemGroup>
<!-- <ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" Version="2.2.0" />
</ItemGroup> -->
<ItemGroup>
<PackageReference Include="DotLiquid" Version="2.0.366" />
<!-- <ProjectReference Include="../../dotliquid/src/DotLiquid/DotLiquid.csproj" /> -->
<PackageReference Include="MimeTypeMapOfficial" Version="1.0.14" />
<PackageReference Include="HttpMultipartParser" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
<_Parameter1>Bemol.Test</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
</Project>