-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtychoext.csproj
46 lines (41 loc) · 1.79 KB
/
tychoext.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PublishAOT>true</PublishAOT>
<PublishTrimmed>true</PublishTrimmed>
<ReadyToRun>false</ReadyToRun>
<TrimMode>link</TrimMode>
<Title>Tychosoft Extensions</Title>
<Product>Tychosoft Extensions</Product>
<Version>0.1.2</Version>
<Authors>David Sugar</Authors>
<Company>Tycho Softworks</Company>
<Description>Tychosoft C# Extensions</Description>
<Copyright>© 2024 Tycho Softworks. Licensed under the MIT License.</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageId>Tychosoft.Extensions</PackageId>
<RepositoryUrl>https://github.com/tychosoft/tychoext</RepositoryUrl>
<PackageTags>sdk;extensions;logging;timers;tasks</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<DebugType>portable</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="9.0.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="" />
<None Include="FEATURES.md" Pack="true" PackagePath="" />
<None Include="LICENSE.md" Pack="true" PackagePath="" />
<None Include="CONTRIBUTING.md" Pack="true" PackagePath="" />
<None Include="CODE_OF_CONDUCT.md" Pack="true" PackagePath="" />
</ItemGroup>
<PropertyGroup>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
</Project>