forked from kadiwa4/LiveSplit.AutoSplitIntegration
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPreviewSettings.csproj
More file actions
37 lines (35 loc) · 1.39 KB
/
Copy pathPreviewSettings.csproj
File metadata and controls
37 lines (35 loc) · 1.39 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
<Project Sdk="Microsoft.NET.Sdk">
<!--
Local-only dev tool: renders the component's settings UserControl in a bare Form so
visual changes can be previewed without a running LiveSplit host. Not shipped, not
built by CI (`dotnet build` at the repo root only picks up the root project).
Launch via scripts/preview-settings.ps1. See CONTRIBUTING.md > Previewing the settings UI.
-->
<PropertyGroup>
<OutputType>Exe</OutputType>
<!-- Reflection reaches internal types; no InternalsVisibleTo needed on the product. -->
<AssemblyName>PreviewSettings</AssemblyName>
<RootNamespace>LiveSplit.PreviewTool</RootNamespace>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\LiveSplit.AutoSplitIntegration.csproj" />
</ItemGroup>
<ItemGroup>
<!--
Product refs are Private=false (host-provided), so they don't flow here.
This tool has no host, so copy the vendored assemblies into its output for runtime resolution.
-->
<Reference Include="LiveSplit">
<HintPath>..\..\lib\LiveSplit.exe</HintPath>
<Private>true</Private>
</Reference>
<Reference Include="LiveSplit.Core">
<HintPath>..\..\lib\LiveSplit.Core.dll</HintPath>
<Private>true</Private>
</Reference>
<Reference Include="UpdateManager">
<HintPath>..\..\lib\UpdateManager.dll</HintPath>
<Private>true</Private>
</Reference>
</ItemGroup>
</Project>