Skip to content
This repository was archived by the owner on Feb 4, 2022. It is now read-only.

Commit 543f61f

Browse files
committed
Update csproj
1 parent f0365a7 commit 543f61f

File tree

8 files changed

+119
-127
lines changed

8 files changed

+119
-127
lines changed

.github/FUNDING.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ community_bridge: # Replace with a single Community Bridge project-name e.g., cl
99
liberapay: # Replace with a single Liberapay username
1010
issuehunt: # Replace with a single IssueHunt username
1111
otechie: # Replace with a single Otechie username
12-
custom: ["https://www.paypal.com/paypalme/aianlinb"]
12+
custom: [paypal.me/aianlinb]

BundleExporter/BundleExporter.csproj

+102-105
Original file line numberDiff line numberDiff line change
@@ -1,106 +1,103 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4-
<PropertyGroup>
5-
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6-
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7-
<ProjectGuid>{EC9F6B3B-0B47-4DF2-9272-7372312ECDAF}</ProjectGuid>
8-
<OutputType>Exe</OutputType>
9-
<RootNamespace>BundleExporter</RootNamespace>
10-
<AssemblyName>BundleExporter</AssemblyName>
11-
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
12-
<FileAlignment>512</FileAlignment>
13-
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
14-
<Deterministic>true</Deterministic>
15-
<PublishUrl>publish\</PublishUrl>
16-
<Install>true</Install>
17-
<InstallFrom>Disk</InstallFrom>
18-
<UpdateEnabled>false</UpdateEnabled>
19-
<UpdateMode>Foreground</UpdateMode>
20-
<UpdateInterval>7</UpdateInterval>
21-
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
22-
<UpdatePeriodically>false</UpdatePeriodically>
23-
<UpdateRequired>false</UpdateRequired>
24-
<MapFileExtensions>true</MapFileExtensions>
25-
<ApplicationRevision>0</ApplicationRevision>
26-
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
27-
<IsWebBootstrapper>false</IsWebBootstrapper>
28-
<UseApplicationTrust>false</UseApplicationTrust>
29-
<BootstrapperEnabled>true</BootstrapperEnabled>
30-
</PropertyGroup>
31-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
32-
<PlatformTarget>x64</PlatformTarget>
33-
<DebugSymbols>true</DebugSymbols>
34-
<DebugType>full</DebugType>
35-
<Optimize>false</Optimize>
36-
<OutputPath>bin\Debug\</OutputPath>
37-
<DefineConstants>
38-
</DefineConstants>
39-
<ErrorReport>prompt</ErrorReport>
40-
<WarningLevel>4</WarningLevel>
41-
<Prefer32Bit>false</Prefer32Bit>
42-
<RunCodeAnalysis>true</RunCodeAnalysis>
43-
<LangVersion>8.0</LangVersion>
44-
</PropertyGroup>
45-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
46-
<PlatformTarget>AnyCPU</PlatformTarget>
47-
<DebugType>pdbonly</DebugType>
48-
<Optimize>true</Optimize>
49-
<OutputPath>bin\Release\</OutputPath>
50-
<DefineConstants>TRACE</DefineConstants>
51-
<ErrorReport>prompt</ErrorReport>
52-
<WarningLevel>4</WarningLevel>
53-
<LangVersion>8.0</LangVersion>
54-
</PropertyGroup>
55-
<PropertyGroup>
56-
<SignAssembly>true</SignAssembly>
57-
</PropertyGroup>
58-
<PropertyGroup>
59-
<SignManifests>true</SignManifests>
60-
</PropertyGroup>
61-
<PropertyGroup>
62-
<ManifestCertificateThumbprint>FAAD7B891DFCA805E70849DD67DD87E659EEBA67</ManifestCertificateThumbprint>
63-
</PropertyGroup>
64-
<PropertyGroup>
65-
<TargetZone>LocalIntranet</TargetZone>
66-
</PropertyGroup>
67-
<PropertyGroup>
68-
<GenerateManifests>true</GenerateManifests>
69-
</PropertyGroup>
70-
<PropertyGroup>
71-
<ApplicationManifest>Properties\app.manifest</ApplicationManifest>
72-
</PropertyGroup>
73-
<ItemGroup>
74-
<Reference Include="System" />
75-
<Reference Include="System.Core" />
76-
<Reference Include="Microsoft.CSharp" />
77-
<Reference Include="System.Data" />
78-
</ItemGroup>
79-
<ItemGroup>
80-
<Compile Include="Program.cs" />
81-
<Compile Include="Properties\AssemblyInfo.cs" />
82-
</ItemGroup>
83-
<ItemGroup>
84-
<None Include="App.config" />
85-
<None Include="Properties\app.manifest" />
86-
</ItemGroup>
87-
<ItemGroup>
88-
<ProjectReference Include="..\LibBundle\LibBundle.csproj">
89-
<Project>{9b9cd245-6053-4f42-8256-0c4b413d82c8}</Project>
90-
<Name>LibBundle</Name>
91-
</ProjectReference>
92-
</ItemGroup>
93-
<ItemGroup>
94-
<BootstrapperPackage Include=".NETFramework,Version=v4.7.2">
95-
<Visible>False</Visible>
96-
<ProductName>Microsoft .NET Framework 4.7.2 %28x86 和 x64%29</ProductName>
97-
<Install>true</Install>
98-
</BootstrapperPackage>
99-
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
100-
<Visible>False</Visible>
101-
<ProductName>.NET Framework 3.5 SP1</ProductName>
102-
<Install>false</Install>
103-
</BootstrapperPackage>
104-
</ItemGroup>
105-
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProjectGuid>{EC9F6B3B-0B47-4DF2-9272-7372312ECDAF}</ProjectGuid>
8+
<OutputType>Exe</OutputType>
9+
<RootNamespace>BundleExporter</RootNamespace>
10+
<AssemblyName>BundleExporter</AssemblyName>
11+
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
12+
<FileAlignment>512</FileAlignment>
13+
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
14+
<Deterministic>true</Deterministic>
15+
<PublishUrl>publish\</PublishUrl>
16+
<Install>true</Install>
17+
<InstallFrom>Disk</InstallFrom>
18+
<UpdateEnabled>false</UpdateEnabled>
19+
<UpdateMode>Foreground</UpdateMode>
20+
<UpdateInterval>7</UpdateInterval>
21+
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
22+
<UpdatePeriodically>false</UpdatePeriodically>
23+
<UpdateRequired>false</UpdateRequired>
24+
<MapFileExtensions>true</MapFileExtensions>
25+
<ApplicationRevision>0</ApplicationRevision>
26+
<ApplicationVersion>2.1.0.%2a</ApplicationVersion>
27+
<IsWebBootstrapper>false</IsWebBootstrapper>
28+
<UseApplicationTrust>false</UseApplicationTrust>
29+
<BootstrapperEnabled>true</BootstrapperEnabled>
30+
</PropertyGroup>
31+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
32+
<PlatformTarget>x64</PlatformTarget>
33+
<DebugSymbols>true</DebugSymbols>
34+
<DebugType>full</DebugType>
35+
<Optimize>false</Optimize>
36+
<OutputPath>..\Release\</OutputPath>
37+
<DefineConstants>
38+
</DefineConstants>
39+
<ErrorReport>prompt</ErrorReport>
40+
<WarningLevel>4</WarningLevel>
41+
<Prefer32Bit>false</Prefer32Bit>
42+
<RunCodeAnalysis>false</RunCodeAnalysis>
43+
<LangVersion>8.0</LangVersion>
44+
</PropertyGroup>
45+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
46+
<PlatformTarget>AnyCPU</PlatformTarget>
47+
<DebugType>pdbonly</DebugType>
48+
<Optimize>true</Optimize>
49+
<OutputPath>bin\Release\</OutputPath>
50+
<DefineConstants>TRACE</DefineConstants>
51+
<ErrorReport>prompt</ErrorReport>
52+
<WarningLevel>4</WarningLevel>
53+
<LangVersion>8.0</LangVersion>
54+
</PropertyGroup>
55+
<PropertyGroup>
56+
<SignAssembly>true</SignAssembly>
57+
</PropertyGroup>
58+
<PropertyGroup>
59+
<SignManifests>true</SignManifests>
60+
</PropertyGroup>
61+
<PropertyGroup>
62+
<TargetZone>LocalIntranet</TargetZone>
63+
</PropertyGroup>
64+
<PropertyGroup>
65+
<GenerateManifests>true</GenerateManifests>
66+
</PropertyGroup>
67+
<PropertyGroup>
68+
<ApplicationManifest>Properties\app.manifest</ApplicationManifest>
69+
</PropertyGroup>
70+
<ItemGroup>
71+
<Reference Include="System" />
72+
<Reference Include="System.Core" />
73+
<Reference Include="Microsoft.CSharp" />
74+
<Reference Include="System.Data" />
75+
</ItemGroup>
76+
<ItemGroup>
77+
<Compile Include="Program.cs" />
78+
<Compile Include="Properties\AssemblyInfo.cs" />
79+
</ItemGroup>
80+
<ItemGroup>
81+
<None Include="App.config" />
82+
<None Include="Properties\app.manifest" />
83+
</ItemGroup>
84+
<ItemGroup>
85+
<ProjectReference Include="..\LibBundle\LibBundle.csproj">
86+
<Project>{9b9cd245-6053-4f42-8256-0c4b413d82c8}</Project>
87+
<Name>LibBundle</Name>
88+
</ProjectReference>
89+
</ItemGroup>
90+
<ItemGroup>
91+
<BootstrapperPackage Include=".NETFramework,Version=v4.7.2">
92+
<Visible>False</Visible>
93+
<ProductName>Microsoft .NET Framework 4.7.2 %28x86 和 x64%29</ProductName>
94+
<Install>true</Install>
95+
</BootstrapperPackage>
96+
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
97+
<Visible>False</Visible>
98+
<ProductName>.NET Framework 3.5 SP1</ProductName>
99+
<Install>false</Install>
100+
</BootstrapperPackage>
101+
</ItemGroup>
102+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
106103
</Project>

BundleExporter/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
// 您可以指定所有的值,也可以使用 '*' 將組建和修訂編號
3232
// 設為預設,如下所示:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("1.0.0.0")]
35-
[assembly: AssemblyFileVersion("1.0.0.0")]
34+
[assembly: AssemblyVersion("2.1.0.0")]
35+
[assembly: AssemblyFileVersion("2.1.0.0")]

FileListGenerator/FileListGenerator.csproj

+4-7
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<UpdateRequired>false</UpdateRequired>
2424
<MapFileExtensions>true</MapFileExtensions>
2525
<ApplicationRevision>0</ApplicationRevision>
26-
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
26+
<ApplicationVersion>2.1.0.%2a</ApplicationVersion>
2727
<IsWebBootstrapper>false</IsWebBootstrapper>
2828
<UseApplicationTrust>false</UseApplicationTrust>
2929
<BootstrapperEnabled>true</BootstrapperEnabled>
@@ -33,29 +33,26 @@
3333
<DebugSymbols>true</DebugSymbols>
3434
<DebugType>full</DebugType>
3535
<Optimize>false</Optimize>
36-
<OutputPath>bin\Debug\</OutputPath>
36+
<OutputPath>..\Release\</OutputPath>
3737
<DefineConstants>
3838
</DefineConstants>
3939
<ErrorReport>prompt</ErrorReport>
4040
<WarningLevel>4</WarningLevel>
4141
<Prefer32Bit>false</Prefer32Bit>
42-
<RunCodeAnalysis>true</RunCodeAnalysis>
42+
<RunCodeAnalysis>false</RunCodeAnalysis>
4343
</PropertyGroup>
4444
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
4545
<PlatformTarget>AnyCPU</PlatformTarget>
4646
<DebugType>pdbonly</DebugType>
4747
<Optimize>true</Optimize>
4848
<OutputPath>bin\Release\</OutputPath>
49-
<DefineConstants>TRACE</DefineConstants>
49+
<DefineConstants>TRACE</DefineConstants>
5050
<ErrorReport>prompt</ErrorReport>
5151
<WarningLevel>4</WarningLevel>
5252
</PropertyGroup>
5353
<PropertyGroup>
5454
<SignManifests>true</SignManifests>
5555
</PropertyGroup>
56-
<PropertyGroup>
57-
<ManifestCertificateThumbprint>FAAD7B891DFCA805E70849DD67DD87E659EEBA67</ManifestCertificateThumbprint>
58-
</PropertyGroup>
5956
<PropertyGroup>
6057
<SignAssembly>true</SignAssembly>
6158
</PropertyGroup>

FileListGenerator/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
// 您可以指定所有的值,也可以使用 '*' 將組建和修訂編號
3232
// 設為預設,如下所示:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("1.0.0.0")]
35-
[assembly: AssemblyFileVersion("1.0.0.0")]
34+
[assembly: AssemblyVersion("2.1.0.0")]
35+
[assembly: AssemblyFileVersion("2.1.0.0")]

LibBundle/LibBundle.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717
<DebugSymbols>true</DebugSymbols>
1818
<DebugType>full</DebugType>
1919
<Optimize>false</Optimize>
20-
<OutputPath>bin\Debug\</OutputPath>
20+
<OutputPath>..\Release\</OutputPath>
2121
<DefineConstants>
2222
</DefineConstants>
2323
<ErrorReport>prompt</ErrorReport>
2424
<WarningLevel>4</WarningLevel>
2525
<PlatformTarget>x64</PlatformTarget>
26-
<RunCodeAnalysis>true</RunCodeAnalysis>
26+
<RunCodeAnalysis>false</RunCodeAnalysis>
2727
<LangVersion>8.0</LangVersion>
2828
</PropertyGroup>
2929
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">

LibBundle/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
// 您可以指定所有的值,也可以使用 '*' 將組建和修訂編號
3232
// 設為預設,如下所示:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("2.0.0.0")]
35-
[assembly: AssemblyFileVersion("2.0.0.0")]
34+
[assembly: AssemblyVersion("2.1.0.0")]
35+
[assembly: AssemblyFileVersion("2.1.0.0")]

VisualBundle/VisualBundle.csproj

+4-6
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<UpdateRequired>false</UpdateRequired>
2727
<MapFileExtensions>true</MapFileExtensions>
2828
<ApplicationRevision>0</ApplicationRevision>
29-
<ApplicationVersion>1.3.0.%2a</ApplicationVersion>
29+
<ApplicationVersion>2.1.0.%2a</ApplicationVersion>
3030
<UseApplicationTrust>false</UseApplicationTrust>
3131
<BootstrapperEnabled>true</BootstrapperEnabled>
3232
</PropertyGroup>
@@ -35,13 +35,13 @@
3535
<DebugSymbols>true</DebugSymbols>
3636
<DebugType>full</DebugType>
3737
<Optimize>false</Optimize>
38-
<OutputPath>bin\Debug\</OutputPath>
38+
<OutputPath>..\Release\</OutputPath>
3939
<DefineConstants>
4040
</DefineConstants>
4141
<ErrorReport>prompt</ErrorReport>
4242
<WarningLevel>4</WarningLevel>
4343
<Prefer32Bit>false</Prefer32Bit>
44-
<RunCodeAnalysis>true</RunCodeAnalysis>
44+
<RunCodeAnalysis>false</RunCodeAnalysis>
4545
</PropertyGroup>
4646
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
4747
<PlatformTarget>AnyCPU</PlatformTarget>
@@ -58,9 +58,6 @@
5858
<PropertyGroup>
5959
<SignAssembly>true</SignAssembly>
6060
</PropertyGroup>
61-
<PropertyGroup>
62-
<ManifestCertificateThumbprint>FAAD7B891DFCA805E70849DD67DD87E659EEBA67</ManifestCertificateThumbprint>
63-
</PropertyGroup>
6461
<PropertyGroup>
6562
<TargetZone>LocalIntranet</TargetZone>
6663
</PropertyGroup>
@@ -118,6 +115,7 @@
118115
</Page>
119116
</ItemGroup>
120117
<ItemGroup>
118+
<Compile Include="OpenFolderDialog.cs" />
121119
<Compile Include="Properties\AssemblyInfo.cs">
122120
<SubType>Code</SubType>
123121
</Compile>

0 commit comments

Comments
 (0)