-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFlashMessage.csproj
More file actions
35 lines (31 loc) · 1.19 KB
/
FlashMessage.csproj
File metadata and controls
35 lines (31 loc) · 1.19 KB
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">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Title>Sipen Flash Message</Title>
<Company>Sipen</Company>
<Description>Provides easy access to messages that can be rendered within Razor pages using Bootstrap or Toastr.</Description>
<PackageReadmeFile>ReadMe.md</PackageReadmeFile>
<PackageTags>Toastr;Sipen;Flash Messages;FlashMessage;Ruby on Rails Flash;Flash</PackageTags>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<Authors>Freebytes</Authors>
<Version>1.0.2</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Http" Version="2.3.0" />
<PackageReference Include="Microsoft.AspNetCore.Razor" Version="2.2.0" />
</ItemGroup>
<ItemGroup>
<None Update="LICENSE.txt">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="ReadMe.md">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>