-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathNimbleBlazor.csproj
68 lines (57 loc) · 2.31 KB
/
NimbleBlazor.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
65
66
67
68
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<DebugType>embedded</DebugType>
<Authors>NI</Authors>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageProjectUrl>https://github.com/ni/nimble</PackageProjectUrl>
<RepositoryUrl>https://github.com/ni/nimble</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<DisableImplicitNuGetFallbackFolder>true</DisableImplicitNuGetFallbackFolder>
<PackageTags>Web Components, .NET, Nimble, FAST, Blazor, .NET 8.0</PackageTags>
<NeutralLanguage>en</NeutralLanguage>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702,8669,1591</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<NoWarn>CS8669</NoWarn>
</PropertyGroup>
<!--
Need to explicitly exclude json and config files from Content, or they will get copied to the output directory.
See: https://github.com/dotnet/sdk/issues/25587#issuecomment-1134731799
-->
<ItemGroup>
<Content Remove="**\*.json" />
<Content Remove="**\*.config" />
</ItemGroup>
<ItemGroup>
<None Remove="CodeAnalysisDictionary.xml" />
</ItemGroup>
<ItemGroup>
<AdditionalFiles Include="..\CodeAnalysisDictionary.xml" Link="CodeAnalysisDictionary.xml" />
</ItemGroup>
<ItemGroup>
<SupportedPlatform Include="browser" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Apache.Arrow" Version="[18.0.0]" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.11" />
<PackageReference Include="NI.CSharp.Analyzers" Version="2.0.28" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<Folder Include="wwwroot\" />
</ItemGroup>
<ItemGroup>
<None Include="package.json" />
<None Include="packages.lock.json" />
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<Target Name="CopyNimbleResources" BeforeTargets="BeforeBuild">
<Exec Command="npm run copy-resources:nimble" WorkingDirectory=".." />
</Target>
</Project>