Skip to content

Commit e795243

Browse files
committed
Feat: Nuget package config
1 parent 3c98459 commit e795243

File tree

4 files changed

+46
-0
lines changed

4 files changed

+46
-0
lines changed

README.md

Whitespace-only changes.

assets/icon.png

17.3 KB
Loading

src/CodeOfChaos.Types.TypedValueStore/CodeOfChaos.Types.TypedValueStore.csproj

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,27 @@
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<RootNamespace>CodeOfChaos.Types</RootNamespace>
8+
9+
<!-- Main package name -->
10+
<PackageId>CodeOfChaos.Types.TypedValueStore</PackageId>
11+
<Version>0.0.0</Version>
12+
<Authors>Anna Sas</Authors>
13+
<Description>A small library housing TypedValueStore typings</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>
823
</PropertyGroup>
924

25+
<ItemGroup>
26+
<None Include="../../LICENSE" Pack="true" PackagePath="" Visible="false"/>
27+
<None Include="../../README.md" Pack="true" PackagePath="" Visible="false"/>
28+
<None Include="../../assets/icon.png" Pack="true" PackagePath="" Visible="false"/>
29+
</ItemGroup>
30+
1031
</Project>

src/CodeOfChaos.Types/CodeOfChaos.Types.csproj

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,33 @@
55
<LangVersion>latest</LangVersion>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<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>
823
</PropertyGroup>
924

1025
<ItemGroup Label="InternalsVisibleTo">
1126
<InternalsVisibleTo Include="Tests.CodeOfChaos.Types" />
1227
</ItemGroup>
1328

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+
1435
<ItemGroup>
1536
<PackageReference Include="AterraEngine.Unions" Version="2.5.0" />
1637
<PackageReference Include="AterraEngine.Unions.Generators" Version="2.5.0">
@@ -20,4 +41,8 @@
2041
<PackageReference Include="CodeOfChaos.Extensions" Version="0.22.0" />
2142
</ItemGroup>
2243

44+
<ItemGroup>
45+
<ProjectReference Include="..\CodeOfChaos.Types.TypedValueStore\CodeOfChaos.Types.TypedValueStore.csproj" />
46+
</ItemGroup>
47+
2348
</Project>

0 commit comments

Comments
 (0)