-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathAbyssIrc.Server.csproj
More file actions
62 lines (49 loc) · 2.21 KB
/
AbyssIrc.Server.csproj
File metadata and controls
62 lines (49 loc) · 2.21 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
61
62
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PublishAot>true</PublishAot>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<InvariantGlobalization>true</InvariantGlobalization>
<SelfContained>true</SelfContained>
<Version>0.2.4</Version>
<NoWarn>$(NoWarn);IL3050</NoWarn>
<NoWarn>$(NoWarn);IL2026</NoWarn>
<NoWarn>$(NoWarn);IL2062</NoWarn>
<NoWarn>$(NoWarn);IL2072</NoWarn>
<NoWarn>$(NoWarn);IL2070</NoWarn>
<NoWarn>$(NoWarn);IL2075</NoWarn>
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
</PropertyGroup>
<ItemGroup>
<None Remove="Assets\**\*"/>
<EmbeddedResource Include="Assets\**\*"/>
</ItemGroup>
<ItemGroup>
<TrimmerRootDescriptor Include="ILLink.Descriptors.xml"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AbyssIrc.Core\AbyssIrc.Core.csproj"/>
<ProjectReference Include="..\AbyssIrc.Protocol.Messages\AbyssIrc.Protocol.Messages.csproj"/>
<ProjectReference Include="..\AbyssIrc.Server.Core\AbyssIrc.Server.Core.csproj"/>
<ProjectReference Include="..\AbyssIrc.Server.Network\AbyssIrc.Server.Network.csproj"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="ConsoleAppFramework" Version="5.7.8">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="GitInfo" Version="3.5.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Jint" Version="4.4.1"/>
<PackageReference Include="Microsoft.Extensions.ObjectPool" Version="9.0.8" />
<PackageReference Include="System.Reactive" Version="6.0.1" />
</ItemGroup>
<ItemGroup>
<Folder Include="Events\" />
</ItemGroup>
</Project>