-
Notifications
You must be signed in to change notification settings - Fork 5
/
CurrieTechnologies.Razor.Clipboard.csproj
64 lines (55 loc) · 2.35 KB
/
CurrieTechnologies.Razor.Clipboard.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<TargetFrameworks>net7.0;net6.0;netstandard2.0;</TargetFrameworks>
<RazorLangVersion>3.0</RazorLangVersion>
<Authors>Michael J. Currie</Authors>
<Company>Currie Technologies</Company>
<Product>Razor.Clipboard</Product>
<Description>
A Razor class library for interacting with the browser Clipboard API.
Use in Blazor Server Apps or Blazor WebAssembly Apps.
</Description>
<Copyright>Michael J. Currie</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/Basaingeal/Razor.Clipboard</PackageProjectUrl>
<PackageIcon>logo_v2_128.png</PackageIcon>
<RepositoryUrl>https://github.com/Basaingeal/Razor.Clipboard</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>Blazor Clipboard JSInterop Razor</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>
remove .NET Core 3.1 support
</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<Content Remove="package.json" />
<Content Remove="tsconfig.json" />
</ItemGroup>
<ItemGroup>
<Folder Include="wwwroot\" />
</ItemGroup>
<ItemGroup>
<None Include="package.json" />
<None Include="tsconfig.json" />
<None Include="logo_v2_128.png" Pack="true" PackagePath="\" />
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="8.0.*">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="Microsoft.AspNetCore.Components" Version="3.1.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="3.1.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
<PackageReference Include="Microsoft.AspNetCore.Components" Version="6.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="6.0.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net7.0'">
<PackageReference Include="Microsoft.AspNetCore.Components" Version="7.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="7.0.0" />
</ItemGroup>
</Project>