-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathIgniteUI.Blazor.Lite.csproj
More file actions
89 lines (73 loc) · 3.24 KB
/
IgniteUI.Blazor.Lite.csproj
File metadata and controls
89 lines (73 loc) · 3.24 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
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<PackageIdSuffix>.Lite</PackageIdSuffix>
</PropertyGroup>
<!-- Removed as pinning the language to an older version prevents building in net10 where global usings files are autogenerated -->
<!-- <PropertyGroup>
<LangVersion>8.0</LangVersion>
</PropertyGroup> -->
<PropertyGroup>
<StaticWebAssetBasePath>_content/IgniteUI.Blazor</StaticWebAssetBasePath>
</PropertyGroup>
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
</PropertyGroup>
<PropertyGroup>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>IgniteUI.Blazor$(PackageIdSuffix)</PackageId>
<Version>1.0.0</Version>
<PackageTags>Infragistics;IgniteUI;Blazor</PackageTags>
<Copyright>Infragistics</Copyright>
<PackageProjectUrl>https://www.infragistics.com/products/ignite-ui-blazor</PackageProjectUrl>
<Description>Ignite UI for Blazor Lite is a library of UI components, giving you the ability to build modern web applications.</Description>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DefineConstants>TRACE;BLAZOR</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>TRACE;BLAZOR</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>bin\Debug\$(TargetFramework)\IgniteUI.Blazor.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>bin\Release\$(TargetFramework)\IgniteUI.Blazor.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="9.0.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net10.0'">
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="10.0.0" />
</ItemGroup>
<ItemGroup>
<Compile Remove="dist\**" />
<Content Remove="dist\**" />
<Content Remove="src\**" />
<Content Remove="node_modules\**" />
<Content Remove="*.json" />
<EmbeddedResource Remove="dist\**" />
<None Remove="dist\**" />
<!-- Only root componentsBase and componentsBase/WebInputs -->
<Compile Remove="componentsBase\**\*.cs" />
<Content Remove="componentsBase\**\*.cs" />
<None Remove="componentsBase\**\*.cs" />
<Compile Include="componentsBase\*.cs" />
<Compile Include="componentsBase\WebInputs\*.cs" />
<None Include="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<None Include="LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>