-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathBouyomiPlugin.csproj
75 lines (75 loc) · 3.42 KB
/
BouyomiPlugin.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
66
67
68
69
70
71
72
73
74
75
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<UseWPF>true</UseWPF>
<TargetFramework>net462</TargetFramework>
<LangVersion>8.0</LangVersion>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<Configurations>Release;Beta;Alpha;Debug</Configurations>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DefineConstants>TRACE</DefineConstants>
<WarningLevel>4</WarningLevel>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Beta|AnyCPU'">
<DefineConstants>TRACE;BETA</DefineConstants>
<WarningLevel>4</WarningLevel>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>AnyCPU</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Alpha|AnyCPU'">
<DefineConstants>TRACE;DEBUG;ALPHA</DefineConstants>
<WarningLevel>4</WarningLevel>
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
<Optimize>false</Optimize>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DefineConstants>DEBUG;TRACE</DefineConstants>
<WarningLevel>4</WarningLevel>
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Extended.Wpf.Toolkit" Version="4.0.2" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="System.ServiceModel.Primitives" Version="4.8.1" />
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\BigoIF\BigoIF.csproj" />
<ProjectReference Include="..\Common\Common.csproj" />
<ProjectReference Include="..\IPlugin\Plugin.csproj" />
<ProjectReference Include="..\LineLiveIF\LineLiveIF.csproj" />
<ProjectReference Include="..\MildomIF\MildomIF.csproj" />
<ProjectReference Include="..\MirrativIF\MirrativIF.csproj" />
<ProjectReference Include="..\NicoLiveIF\NicoLiveIF.csproj" />
<ProjectReference Include="..\OpenrecIF\OpenrecIF.csproj" />
<ProjectReference Include="..\MixchIF\MixchIF.csproj" />
<ProjectReference Include="..\PeriscopeIF\PeriscopeIF.csproj" />
<ProjectReference Include="..\PluginCommon\PluginCommon.csproj" />
<ProjectReference Include="..\ShowRoomIF\ShowRoomIF.csproj" />
<ProjectReference Include="..\SitePluginCommon\SitePluginCommon.csproj" />
<ProjectReference Include="..\TestSiteIF\TestSiteIF.csproj" />
<ProjectReference Include="..\TwicasIF\TwicasIF.csproj" />
<ProjectReference Include="..\TwitchIF\TwitchIF.csproj" />
<ProjectReference Include="..\WhowatchIF\WhowatchIF.csproj" />
<ProjectReference Include="..\YouTubeLiveIF\YouTubeLiveIF.csproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="Microsoft.CSharp" />
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Runtime.Remoting" />
<Reference Include="System.Web" />
<Reference Include="System.Windows" />
<Reference Include="System.Xaml" />
<Reference Include="WindowsBase" />
</ItemGroup>
</Project>