-
Notifications
You must be signed in to change notification settings - Fork 0
/
EmojiPicker.csproj
44 lines (33 loc) · 1.68 KB
/
EmojiPicker.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
41
42
43
44
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<AddRazorSupportForMvc>true</AddRazorSupportForMvc>
<PackageId>WSDT.Blazor.EmojiFileInput</PackageId>
<Title>Emoji- and Filepicker for Blazor</Title>
<Description>Provides a simple Bootstrap Text-Input field with Smiley- and File-Support.</Description>
<Version>1.1.0</Version>
<Authors>Kevin Riedl: github.com/wsdt</Authors>
<Company>Self-Employed</Company>
<RepositoryUrl>https://github.com/wsdt/Blazor_EmojiFilePicker</RepositoryUrl>
<PackageTags>Blazor;Emoji;Smiley;Input;Text;File;Image;Picker;Bootstrap</PackageTags>
<Copyright>WSDT - Riedl Kevin</Copyright>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<NeutralLanguage>en-AT</NeutralLanguage>
<PackageReleaseNotes>Added clear/reset button.</PackageReleaseNotes>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>EmojiPicker.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="bootstrap" Version="4.4.1" />
<PackageReference Include="Markdig" Version="0.20.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="3.1.3" />
<PackageReference Include="Tewr.Blazor.FileReader" Version="1.5.0.20109" />
</ItemGroup>
</Project>