forked from kadiwa4/LiveSplit.AutoSplitIntegration
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLiveSplit.AutoSplitIntegration.csproj
More file actions
50 lines (46 loc) · 1.97 KB
/
Copy pathLiveSplit.AutoSplitIntegration.csproj
File metadata and controls
50 lines (46 loc) · 1.97 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<RootNamespace>LiveSplit</RootNamespace>
<AssemblyName>LiveSplit.AutoSplitIntegration</AssemblyName>
<Deterministic>true</Deterministic>
<!-- Ship a full (Windows) PDB alongside the DLL for readable line numbers in crash reports -->
<DebugSymbols>true</DebugSymbols>
<!-- .NET Framework runtime's stack-trace reader doesn't reliably resolve portable PDBs -->
<DebugType>full</DebugType>
<!-- Assembly metadata -->
<Product>LiveSplit.AutoSplitIntegration</Product>
<Description>Directly connects AutoSplit with LiveSplit.</Description>
<Company>Toufool</Company>
<Copyright>Copyright © 2026</Copyright>
<!-- Dev placeholder; releases are versioned from the git tag via CI (-p:Version). -->
<Version>0.0.0-dev</Version>
</PropertyGroup>
<!--
Local-only dev tools live under tools/ with their own projects. This project sits at the
repo root, so its default `**/*.cs` glob would otherwise compile their sources (and their
generated obj/ attributes), breaking the product build. Keep the tools tree out.
-->
<ItemGroup>
<Compile Remove="tools/**/*.cs" />
<None Remove="tools/**/*" />
</ItemGroup>
<ItemGroup>
<!-- LiveSplit host assemblies, vendored under lib/ (see lib/README.md). -->
<!-- Private=false: provided by the host at runtime, not shipped with the plugin. -->
<Reference Include="LiveSplit">
<HintPath>lib\LiveSplit.exe</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="LiveSplit.Core">
<HintPath>lib\LiveSplit.Core.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="UpdateManager">
<HintPath>lib\UpdateManager.dll</HintPath>
<Private>false</Private>
</Reference>
<!-- GAC framework assemblies are not implicit for .NET Framework SDK-style projects. -->
<Reference Include="System.Xml" />
</ItemGroup>
</Project>