-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibirc.csproj
More file actions
32 lines (31 loc) · 1.17 KB
/
libirc.csproj
File metadata and controls
32 lines (31 loc) · 1.17 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>libirc</AssemblyName>
<RootNamespace>libirc</RootNamespace>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<Deterministic>false</Deterministic>
</PropertyGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.cs" />
<Compile Include="Buffer.cs" />
<Compile Include="Channel.cs" />
<Compile Include="Configuration.cs" />
<Compile Include="Defs.cs" />
<Compile Include="Formatter.cs" />
<Compile Include="Mode.cs" />
<Compile Include="Network.cs" />
<Compile Include="Profiler.cs" />
<Compile Include="Target.cs" />
<Compile Include="ThreadManager.cs" />
<Compile Include="User.cs" />
<Compile Include="UserInfo.cs" />
<Compile Include="Processor/ChannelData.cs" />
<Compile Include="Processor/NetworkData.cs" />
<Compile Include="Processor/ProcessSelf.cs" />
<Compile Include="Processor/ProcessorIRC.cs" />
<Compile Include="Protocols/MessageClass.cs" />
<Compile Include="Protocols/Protocol.cs" />
<Compile Include="Protocols/ProtocolIrc.cs" />
<Compile Include="Protocols/ProtocolSv.cs" />
</ItemGroup>
</Project>