-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathLiveSplit.BugFables.csproj
65 lines (65 loc) · 2.75 KB
/
LiveSplit.BugFables.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net481</TargetFramework>
<AssemblyTitle>BugFablesAutoSplitter</AssemblyTitle>
<Product>BugFablesAutoSplitter</Product>
<AssemblyVersion>1.3.4.0</AssemblyVersion>
<FileVersion>1.3.4.0</FileVersion>
<OutputPath>bin\$(Configuration)\</OutputPath>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugType>portable</DebugType>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
</PropertyGroup>
<Target Name="CopyToLiveSplit" AfterTargets="Build">
<!-- Copy dll to LiveSplit component folder for testing -->
<Exec Command="copy "$(TargetPath)" "C:\Users\aldelaro5\Documents\LiveSplit_1.8.29\Components\$(TargetFileName)"" />
<!-- Copy dll to repository Component folder if building for Release -->
<Exec Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' " Command="copy "$(TargetPath)" "$(ProjectDir)Components\$(TargetFileName)"" />
</Target>
<ItemGroup>
<Reference Include="LiveSplit.Core">
<HintPath>C:\Users\aldelaro5\Documents\LiveSplit_1.8.29\LiveSplit.Core.dll</HintPath>
</Reference>
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xaml" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Net.Http" />
<Reference Include="UpdateManager">
<HintPath>C:\Users\aldelaro5\Documents\LiveSplit_1.8.29\UpdateManager.dll</HintPath>
</Reference>
<Reference Include="WindowsBase" />
</ItemGroup>
<ItemGroup>
<Compile Update="UI\SettingsUserControl.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Update="UI\SettingsUserControl.Designer.cs">
<DependentUpon>SettingsUserControl.cs</DependentUpon>
</Compile>
<Compile Update="UI\SplitSetting.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Update="UI\SplitSetting.Designer.cs">
<DependentUpon>SplitSetting.cs</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="UI\SettingsUserControl.resx">
<DependentUpon>SettingsUserControl.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Update="UI\SplitSetting.resx">
<DependentUpon>SplitSetting.cs</DependentUpon>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Content Include="Components\LiveSplit.BugFables.dll" />
<Content Include="Components\Updates.xml" />
</ItemGroup>
</Project>