-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathIvy.DesignSystem.csproj
More file actions
60 lines (51 loc) · 2.58 KB
/
Ivy.DesignSystem.csproj
File metadata and controls
60 lines (51 loc) · 2.58 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>disable</ImplicitUsings>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<!-- Package Metadata -->
<PackageId>Ivy.DesignSystem</PackageId>
<Version>1.1.31</Version>
<Authors>Ivy Interactive</Authors>
<Company>Ivy Interactive</Company>
<Description>Modular multi-product token-based design system for Ivy products. Provides design tokens as C# static classes for use in ASP.NET applications.</Description>
<Copyright>Copyright (c) 2025 Ivy Interactive</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<!-- Repository Information -->
<PackageProjectUrl>https://github.com/Ivy-Interactive/Ivy-Design-System</PackageProjectUrl>
<RepositoryUrl>https://github.com/Ivy-Interactive/Ivy-Design-System.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReadmeFile>README.md</PackageReadmeFile>
<!-- Package Tags -->
<PackageTags>design-tokens;design-system;tokens;ivy;css-variables;theming</PackageTags>
<!-- Documentation -->
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\Ivy.DesignSystem.xml</DocumentationFile>
<!-- NuGet Package Settings -->
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<!-- Include all generated C# files from dist/csharp -->
<!-- Ivy Framework tokens -->
<Compile Include="dist/csharp/IvyFrameworkSourceTokens.cs" />
<Compile Include="dist/csharp/IvyFrameworkNeutralTokens.cs" />
<Compile Include="dist/csharp/IvyFrameworkChromaticTokens.cs" />
<Compile Include="dist/csharp/IvyFrameworkBorderRadiusTokens.cs" />
<Compile Include="dist/csharp/IvyFrameworkPaddingTokens.cs" />
<Compile Include="dist/csharp/IvyFrameworkShadowTokens.cs" />
<Compile Include="dist/csharp/IvyFrameworkLightThemeTokens.cs" />
<Compile Include="dist/csharp/IvyFrameworkDarkThemeTokens.cs" />
<!-- Ivy Web tokens -->
<Compile Include="dist/csharp/IvyWebSourceTokens.cs" />
<Compile Include="dist/csharp/IvyWebLightThemeTokens.cs" />
<Compile Include="dist/csharp/IvyWebDarkThemeTokens.cs" />
</ItemGroup>
<ItemGroup>
<!-- Include README in package -->
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>