-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathStardust.Utilities.csproj.Backup.tmp
More file actions
57 lines (48 loc) · 2.22 KB
/
Stardust.Utilities.csproj.Backup.tmp
File metadata and controls
57 lines (48 loc) · 2.22 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<!-- NuGet Package Settings -->
<IsPackable>true</IsPackable>
<PackageId>Stardust.Utilities</PackageId>
<Version>0.8.3</Version>
<Authors>Dave Hadner</Authors>
<Description>Utility types for bit manipulation, error handling, and big-endian data types. Includes source generator for [BitFields] attribute.</Description>
<PackageTags>utilities;bitfields;source-generator;result;big-endian</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/dhadner/Stardust.Utilities</PackageProjectUrl>
<RepositoryUrl>https://github.com/dhadner/Stardust.Utilities</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageIcon>icon.png</PackageIcon>
</PropertyGroup>
<!-- Exclude subfolders from compilation -->
<ItemGroup>
<Compile Remove="Generators\**" />
<Compile Remove="Test\**" />
<None Remove="Generators\**" />
<None Remove="Test\**" />
<EmbeddedResource Remove="Generators\**" />
<EmbeddedResource Remove="Test\**" />
</ItemGroup>
<!-- Include the source generator - flows to referencing projects -->
<ItemGroup>
<ProjectReference Include="Generators\Stardust.Generators.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
</ItemGroup>
<!-- Include README in NuGet package -->
<ItemGroup>
<None Include=".github\workflows\ci.yml" />
<None Include="README.md" Pack="true" PackagePath="" />
<None Include="icon.png" Pack="true" PackagePath="" />
</ItemGroup>
<!-- Pack the generator DLL as an analyzer (for NuGet package) -->
<ItemGroup>
<None Include="Generators\bin\$(Configuration)\netstandard2.0\Stardust.Generators.dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
</ItemGroup>
<!-- Include .props and .targets files for auto-configuration -->
<ItemGroup>
<None Include="build\Stardust.Utilities.props" Pack="true" PackagePath="build" />
<None Include="build\Stardust.Utilities.targets" Pack="true" PackagePath="build" />
</ItemGroup>
</Project>