Skip to content

Commit 555b14f

Browse files
committed
mcv本体を1つのファイルで出力するようにした
1 parent 12432b0 commit 555b14f

File tree

66 files changed

+469
-381
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+469
-381
lines changed

BigoIF/BigoIF.csproj

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<OutputPath>bin\Release\</OutputPath>
1010
<DefineConstants>TRACE</DefineConstants>
1111
<WarningLevel>4</WarningLevel>
12-
<DebugType>pdbonly</DebugType>
12+
<DebugType>embedded</DebugType>
1313
<Optimize>true</Optimize>
1414
<ErrorReport>prompt</ErrorReport>
1515
<WarningLevel>4</WarningLevel>
@@ -19,21 +19,23 @@
1919
<DefineConstants>TRACE;BETA</DefineConstants>
2020
<WarningLevel>4</WarningLevel>
2121
<Optimize>true</Optimize>
22-
<DebugType>pdbonly</DebugType>
22+
<DebugType>embedded</DebugType>
2323
<PlatformTarget>AnyCPU</PlatformTarget>
2424
<ErrorReport>prompt</ErrorReport>
2525
</PropertyGroup>
2626
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Alpha|AnyCPU'">
27+
<OutputPath>bin\Alpha\</OutputPath>
2728
<DefineConstants>TRACE;DEBUG;ALPHA</DefineConstants>
2829
<WarningLevel>4</WarningLevel>
29-
<DebugType>full</DebugType>
30+
<DebugType>embedded</DebugType>
3031
<DebugSymbols>true</DebugSymbols>
3132
<Optimize>false</Optimize>
3233
</PropertyGroup>
33-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
34+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
35+
<OutputPath>bin\Debug\</OutputPath>
3436
<DefineConstants>DEBUG;TRACE</DefineConstants>
3537
<WarningLevel>4</WarningLevel>
36-
<DebugType>full</DebugType>
38+
<DebugType>embedded</DebugType>
3739
<DebugSymbols>true</DebugSymbols>
3840
</PropertyGroup>
3941
<ItemGroup>

BigoSitePlugin/BigoSitePlugin.csproj

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<UseWPF>true</UseWPF>
44
<TargetFramework>net60-windows</TargetFramework>
@@ -9,7 +9,7 @@
99
<OutputPath>bin\Release\</OutputPath>
1010
<DefineConstants>TRACE</DefineConstants>
1111
<WarningLevel>4</WarningLevel>
12-
<DebugType>pdbonly</DebugType>
12+
<DebugType>embedded</DebugType>
1313
<Optimize>true</Optimize>
1414
<ErrorReport>prompt</ErrorReport>
1515
<WarningLevel>4</WarningLevel>
@@ -19,21 +19,23 @@
1919
<DefineConstants>TRACE;BETA</DefineConstants>
2020
<WarningLevel>4</WarningLevel>
2121
<Optimize>true</Optimize>
22-
<DebugType>pdbonly</DebugType>
22+
<DebugType>embedded</DebugType>
2323
<PlatformTarget>AnyCPU</PlatformTarget>
2424
<ErrorReport>prompt</ErrorReport>
2525
</PropertyGroup>
2626
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Alpha|AnyCPU'">
27+
<OutputPath>bin\Alpha\</OutputPath>
2728
<DefineConstants>TRACE;DEBUG;ALPHA</DefineConstants>
2829
<WarningLevel>4</WarningLevel>
29-
<DebugType>full</DebugType>
30+
<DebugType>embedded</DebugType>
3031
<DebugSymbols>true</DebugSymbols>
3132
<Optimize>false</Optimize>
3233
</PropertyGroup>
3334
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
35+
<OutputPath>bin\Debug\</OutputPath>
3436
<DefineConstants>DEBUG;TRACE</DefineConstants>
3537
<WarningLevel>4</WarningLevel>
36-
<DebugType>full</DebugType>
38+
<DebugType>embedded</DebugType>
3739
<DebugSymbols>true</DebugSymbols>
3840
</PropertyGroup>
3941
<ItemGroup>

BigoSitePluginTests/BigoSitePluginTests.csproj

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<OutputPath>bin\Release\</OutputPath>
99
<DefineConstants>TRACE</DefineConstants>
1010
<WarningLevel>4</WarningLevel>
11-
<DebugType>pdbonly</DebugType>
11+
<DebugType>embedded</DebugType>
1212
<Optimize>true</Optimize>
1313
<ErrorReport>prompt</ErrorReport>
1414
<WarningLevel>4</WarningLevel>
@@ -18,21 +18,23 @@
1818
<DefineConstants>TRACE;BETA</DefineConstants>
1919
<WarningLevel>4</WarningLevel>
2020
<Optimize>true</Optimize>
21-
<DebugType>pdbonly</DebugType>
21+
<DebugType>embedded</DebugType>
2222
<PlatformTarget>AnyCPU</PlatformTarget>
2323
<ErrorReport>prompt</ErrorReport>
2424
</PropertyGroup>
2525
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Alpha|AnyCPU'">
26+
<OutputPath>bin\Alpha\</OutputPath>
2627
<DefineConstants>TRACE;DEBUG;ALPHA</DefineConstants>
2728
<WarningLevel>4</WarningLevel>
28-
<DebugType>full</DebugType>
29+
<DebugType>embedded</DebugType>
2930
<DebugSymbols>true</DebugSymbols>
3031
<Optimize>false</Optimize>
3132
</PropertyGroup>
3233
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
34+
<OutputPath>bin\Debug\</OutputPath>
3335
<DefineConstants>DEBUG;TRACE</DefineConstants>
3436
<WarningLevel>4</WarningLevel>
35-
<DebugType>full</DebugType>
37+
<DebugType>embedded</DebugType>
3638
<DebugSymbols>true</DebugSymbols>
3739
</PropertyGroup>
3840
<ItemGroup>

BouyomiPlugin/BouyomiPlugin.csproj

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<UseWPF>true</UseWPF>
44
<TargetFramework>net60-windows</TargetFramework>
@@ -7,32 +7,36 @@
77
<Configurations>Release;Beta;Alpha;Debug</Configurations>
88
</PropertyGroup>
99
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
10+
<OutputPath>bin\Release\</OutputPath>
1011
<DefineConstants>TRACE</DefineConstants>
1112
<WarningLevel>4</WarningLevel>
12-
<DebugType>pdbonly</DebugType>
13+
<DebugType>embedded</DebugType>
1314
<Optimize>true</Optimize>
1415
<ErrorReport>prompt</ErrorReport>
1516
<WarningLevel>4</WarningLevel>
1617
</PropertyGroup>
1718
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Beta|AnyCPU'">
19+
<OutputPath>bin\Beta\</OutputPath>
1820
<DefineConstants>TRACE;BETA</DefineConstants>
1921
<WarningLevel>4</WarningLevel>
2022
<Optimize>true</Optimize>
21-
<DebugType>pdbonly</DebugType>
23+
<DebugType>embedded</DebugType>
2224
<PlatformTarget>AnyCPU</PlatformTarget>
2325
<ErrorReport>prompt</ErrorReport>
2426
</PropertyGroup>
2527
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Alpha|AnyCPU'">
28+
<OutputPath>bin\Alpha\</OutputPath>
2629
<DefineConstants>TRACE;DEBUG;ALPHA</DefineConstants>
2730
<WarningLevel>4</WarningLevel>
28-
<DebugType>full</DebugType>
31+
<DebugType>embedded</DebugType>
2932
<DebugSymbols>true</DebugSymbols>
3033
<Optimize>false</Optimize>
3134
</PropertyGroup>
3235
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
36+
<OutputPath>bin\Debug\</OutputPath>
3337
<DefineConstants>DEBUG;TRACE</DefineConstants>
3438
<WarningLevel>4</WarningLevel>
35-
<DebugType>full</DebugType>
39+
<DebugType>embedded</DebugType>
3640
<DebugSymbols>true</DebugSymbols>
3741
</PropertyGroup>
3842
<ItemGroup>

BrowserCookieImplementations/BrowserCookieImplementations.csproj

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<OutputPath>bin\Release\</OutputPath>
99
<DefineConstants>TRACE</DefineConstants>
1010
<WarningLevel>4</WarningLevel>
11-
<DebugType>pdbonly</DebugType>
11+
<DebugType>embedded</DebugType>
1212
<Optimize>true</Optimize>
1313
<ErrorReport>prompt</ErrorReport>
1414
<WarningLevel>4</WarningLevel>
@@ -18,21 +18,23 @@
1818
<DefineConstants>TRACE;BETA</DefineConstants>
1919
<WarningLevel>4</WarningLevel>
2020
<Optimize>true</Optimize>
21-
<DebugType>pdbonly</DebugType>
21+
<DebugType>embedded</DebugType>
2222
<PlatformTarget>AnyCPU</PlatformTarget>
2323
<ErrorReport>prompt</ErrorReport>
2424
</PropertyGroup>
2525
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Alpha|AnyCPU'">
26+
<OutputPath>bin\Alpha\</OutputPath>
2627
<DefineConstants>TRACE;DEBUG;ALPHA</DefineConstants>
2728
<WarningLevel>4</WarningLevel>
28-
<DebugType>full</DebugType>
29+
<DebugType>embedded</DebugType>
2930
<DebugSymbols>true</DebugSymbols>
3031
<Optimize>false</Optimize>
3132
</PropertyGroup>
3233
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
34+
<OutputPath>bin\Debug\</OutputPath>
3335
<DefineConstants>DEBUG;TRACE</DefineConstants>
3436
<WarningLevel>4</WarningLevel>
35-
<DebugType>full</DebugType>
37+
<DebugType>embedded</DebugType>
3638
<DebugSymbols>true</DebugSymbols>
3739
</PropertyGroup>
3840
<ItemGroup>

BrowserCookieImplementationsTests/BrowserCookieImplementationsTests.csproj

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<OutputPath>bin\Release\</OutputPath>
99
<DefineConstants>TRACE</DefineConstants>
1010
<WarningLevel>4</WarningLevel>
11-
<DebugType>pdbonly</DebugType>
11+
<DebugType>embedded</DebugType>
1212
<Optimize>true</Optimize>
1313
<ErrorReport>prompt</ErrorReport>
1414
<WarningLevel>4</WarningLevel>
@@ -18,21 +18,23 @@
1818
<DefineConstants>TRACE;BETA</DefineConstants>
1919
<WarningLevel>4</WarningLevel>
2020
<Optimize>true</Optimize>
21-
<DebugType>pdbonly</DebugType>
21+
<DebugType>embedded</DebugType>
2222
<PlatformTarget>AnyCPU</PlatformTarget>
2323
<ErrorReport>prompt</ErrorReport>
2424
</PropertyGroup>
2525
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Alpha|AnyCPU'">
26+
<OutputPath>bin\Alpha\</OutputPath>
2627
<DefineConstants>TRACE;DEBUG;ALPHA</DefineConstants>
2728
<WarningLevel>4</WarningLevel>
28-
<DebugType>full</DebugType>
29+
<DebugType>embedded</DebugType>
2930
<DebugSymbols>true</DebugSymbols>
3031
<Optimize>false</Optimize>
3132
</PropertyGroup>
3233
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
34+
<OutputPath>bin\Debug\</OutputPath>
3335
<DefineConstants>DEBUG;TRACE</DefineConstants>
3436
<WarningLevel>4</WarningLevel>
35-
<DebugType>full</DebugType>
37+
<DebugType>embedded</DebugType>
3638
<DebugSymbols>true</DebugSymbols>
3739
</PropertyGroup>
3840
<ItemGroup>

BrowserCookieInterfaces/BrowserCookieInterfaces.csproj

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<OutputPath>bin\Release\</OutputPath>
99
<DefineConstants>TRACE</DefineConstants>
1010
<WarningLevel>4</WarningLevel>
11-
<DebugType>pdbonly</DebugType>
11+
<DebugType>embedded</DebugType>
1212
<Optimize>true</Optimize>
1313
<ErrorReport>prompt</ErrorReport>
1414
<WarningLevel>4</WarningLevel>
@@ -18,21 +18,23 @@
1818
<DefineConstants>TRACE;BETA</DefineConstants>
1919
<WarningLevel>4</WarningLevel>
2020
<Optimize>true</Optimize>
21-
<DebugType>pdbonly</DebugType>
21+
<DebugType>embedded</DebugType>
2222
<PlatformTarget>AnyCPU</PlatformTarget>
2323
<ErrorReport>prompt</ErrorReport>
2424
</PropertyGroup>
2525
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Alpha|AnyCPU'">
26+
<OutputPath>bin\Alpha\</OutputPath>
2627
<DefineConstants>TRACE;DEBUG;ALPHA</DefineConstants>
2728
<WarningLevel>4</WarningLevel>
28-
<DebugType>full</DebugType>
29+
<DebugType>embedded</DebugType>
2930
<DebugSymbols>true</DebugSymbols>
3031
<Optimize>false</Optimize>
3132
</PropertyGroup>
32-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
33+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
34+
<OutputPath>bin\Debug\</OutputPath>
3335
<DefineConstants>DEBUG;TRACE</DefineConstants>
3436
<WarningLevel>4</WarningLevel>
35-
<DebugType>full</DebugType>
37+
<DebugType>embedded</DebugType>
3638
<DebugSymbols>true</DebugSymbols>
3739
</PropertyGroup>
3840
</Project>

CommentGeneratorPlugin/CommentGeneratorPlugin.csproj

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<UseWPF>true</UseWPF>
44
<TargetFramework>net60-windows</TargetFramework>
@@ -7,33 +7,36 @@
77
<Configurations>Release;Beta;Alpha;Debug</Configurations>
88
</PropertyGroup>
99
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
10+
<OutputPath>bin\Release\</OutputPath>
1011
<DefineConstants>TRACE</DefineConstants>
1112
<WarningLevel>4</WarningLevel>
12-
<DebugType>pdbonly</DebugType>
13+
<DebugType>embedded</DebugType>
1314
<Optimize>true</Optimize>
1415
<ErrorReport>prompt</ErrorReport>
1516
<WarningLevel>4</WarningLevel>
1617
</PropertyGroup>
1718
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Beta|AnyCPU'">
18-
<OutputPath>..\Output\Beta\plugins\CommentGenerator</OutputPath>
19+
<OutputPath>bin\Beta\</OutputPath>
1920
<DefineConstants>TRACE;BETA</DefineConstants>
2021
<WarningLevel>4</WarningLevel>
2122
<Optimize>true</Optimize>
22-
<DebugType>pdbonly</DebugType>
23+
<DebugType>embedded</DebugType>
2324
<PlatformTarget>AnyCPU</PlatformTarget>
2425
<ErrorReport>prompt</ErrorReport>
2526
</PropertyGroup>
2627
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Alpha|AnyCPU'">
28+
<OutputPath>bin\Alpha\</OutputPath>
2729
<DefineConstants>TRACE;DEBUG;ALPHA</DefineConstants>
2830
<WarningLevel>4</WarningLevel>
29-
<DebugType>full</DebugType>
31+
<DebugType>embedded</DebugType>
3032
<DebugSymbols>true</DebugSymbols>
3133
<Optimize>false</Optimize>
3234
</PropertyGroup>
3335
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
36+
<OutputPath>bin\Debug\</OutputPath>
3437
<DefineConstants>DEBUG;TRACE</DefineConstants>
3538
<WarningLevel>4</WarningLevel>
36-
<DebugType>full</DebugType>
39+
<DebugType>embedded</DebugType>
3740
<DebugSymbols>true</DebugSymbols>
3841
</PropertyGroup>
3942
<ItemGroup>

CommentGeneratorPluginTests/CommentGeneratorPluginTests.csproj

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<OutputPath>bin\Release\</OutputPath>
99
<DefineConstants>TRACE</DefineConstants>
1010
<WarningLevel>4</WarningLevel>
11-
<DebugType>pdbonly</DebugType>
11+
<DebugType>embedded</DebugType>
1212
<Optimize>true</Optimize>
1313
<ErrorReport>prompt</ErrorReport>
1414
<WarningLevel>4</WarningLevel>
@@ -18,21 +18,23 @@
1818
<DefineConstants>TRACE;BETA</DefineConstants>
1919
<WarningLevel>4</WarningLevel>
2020
<Optimize>true</Optimize>
21-
<DebugType>pdbonly</DebugType>
21+
<DebugType>embedded</DebugType>
2222
<PlatformTarget>AnyCPU</PlatformTarget>
2323
<ErrorReport>prompt</ErrorReport>
2424
</PropertyGroup>
2525
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Alpha|AnyCPU'">
26+
<OutputPath>bin\Alpha\</OutputPath>
2627
<DefineConstants>TRACE;DEBUG;ALPHA</DefineConstants>
2728
<WarningLevel>4</WarningLevel>
28-
<DebugType>full</DebugType>
29+
<DebugType>embedded</DebugType>
2930
<DebugSymbols>true</DebugSymbols>
3031
<Optimize>false</Optimize>
3132
</PropertyGroup>
3233
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
34+
<OutputPath>bin\Debug\</OutputPath>
3335
<DefineConstants>DEBUG;TRACE</DefineConstants>
3436
<WarningLevel>4</WarningLevel>
35-
<DebugType>full</DebugType>
37+
<DebugType>embedded</DebugType>
3638
<DebugSymbols>true</DebugSymbols>
3739
</PropertyGroup>
3840
<ItemGroup>

CommentViewerCommon/CommentViewerCommon.csproj

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<OutputPath>bin\Release\</OutputPath>
1010
<DefineConstants>TRACE</DefineConstants>
1111
<WarningLevel>4</WarningLevel>
12-
<DebugType>pdbonly</DebugType>
12+
<DebugType>embedded</DebugType>
1313
<Optimize>true</Optimize>
1414
<ErrorReport>prompt</ErrorReport>
1515
<WarningLevel>4</WarningLevel>
@@ -19,21 +19,23 @@
1919
<DefineConstants>TRACE;BETA</DefineConstants>
2020
<WarningLevel>4</WarningLevel>
2121
<Optimize>true</Optimize>
22-
<DebugType>pdbonly</DebugType>
22+
<DebugType>embedded</DebugType>
2323
<PlatformTarget>AnyCPU</PlatformTarget>
2424
<ErrorReport>prompt</ErrorReport>
2525
</PropertyGroup>
2626
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Alpha|AnyCPU'">
27+
<OutputPath>bin\Alpha\</OutputPath>
2728
<DefineConstants>TRACE;DEBUG;ALPHA</DefineConstants>
2829
<WarningLevel>4</WarningLevel>
29-
<DebugType>full</DebugType>
30+
<DebugType>embedded</DebugType>
3031
<DebugSymbols>true</DebugSymbols>
3132
<Optimize>false</Optimize>
3233
</PropertyGroup>
3334
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
35+
<OutputPath>bin\Debug\</OutputPath>
3436
<DefineConstants>DEBUG;TRACE</DefineConstants>
3537
<WarningLevel>4</WarningLevel>
36-
<DebugType>full</DebugType>
38+
<DebugType>embedded</DebugType>
3739
<DebugSymbols>true</DebugSymbols>
3840
</PropertyGroup>
3941
<ItemGroup>

0 commit comments

Comments
 (0)