|
5 | 5 | <LangVersion>latest</LangVersion> |
6 | 6 | <ImplicitUsings>enable</ImplicitUsings> |
7 | 7 | <Nullable>enable</Nullable> |
| 8 | + |
| 9 | + <!-- Main package name --> |
| 10 | + <PackageId>CodeOfChaos.Types</PackageId> |
| 11 | + <Version>0.0.0</Version> |
| 12 | + <Authors>Anna Sas</Authors> |
| 13 | + <Description>A library of common types and classes within the CodeOfChaos project</Description> |
| 14 | + <PackageProjectUrl>https://github.com/code-of-chaos/cs-code_of_chaos-types</PackageProjectUrl> |
| 15 | + <PackageTags>typing</PackageTags> |
| 16 | + <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
| 17 | + <PublishRepositoryUrl>true</PublishRepositoryUrl> |
| 18 | + <IncludeSymbols>true</IncludeSymbols> |
| 19 | + <DebugType>embedded</DebugType> |
| 20 | + <PackageLicenseFile>LICENSE</PackageLicenseFile> |
| 21 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 22 | + <PackageIcon>icon.png</PackageIcon> |
8 | 23 | </PropertyGroup> |
9 | 24 |
|
10 | 25 | <ItemGroup Label="InternalsVisibleTo"> |
11 | 26 | <InternalsVisibleTo Include="Tests.CodeOfChaos.Types" /> |
12 | 27 | </ItemGroup> |
13 | 28 |
|
| 29 | + <ItemGroup> |
| 30 | + <None Include="../../LICENSE" Pack="true" PackagePath="" Visible="false"/> |
| 31 | + <None Include="../../README.md" Pack="true" PackagePath="" Visible="false"/> |
| 32 | + <None Include="../../assets/icon.png" Pack="true" PackagePath="" Visible="false"/> |
| 33 | + </ItemGroup> |
| 34 | + |
14 | 35 | <ItemGroup> |
15 | 36 | <PackageReference Include="AterraEngine.Unions" Version="2.5.0" /> |
16 | 37 | <PackageReference Include="AterraEngine.Unions.Generators" Version="2.5.0"> |
|
20 | 41 | <PackageReference Include="CodeOfChaos.Extensions" Version="0.22.0" /> |
21 | 42 | </ItemGroup> |
22 | 43 |
|
| 44 | + <ItemGroup> |
| 45 | + <ProjectReference Include="..\CodeOfChaos.Types.TypedValueStore\CodeOfChaos.Types.TypedValueStore.csproj" /> |
| 46 | + </ItemGroup> |
| 47 | + |
23 | 48 | </Project> |
0 commit comments