Skip to content

Commit 796d2fd

Browse files
authored
Merge 99ec177 into d76a86e
2 parents d76a86e + 99ec177 commit 796d2fd

File tree

3 files changed

+24
-9
lines changed

3 files changed

+24
-9
lines changed

Confuser.CLI/Confuser.CLI.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,25 +23,25 @@
2323
<DebugSymbols>true</DebugSymbols>
2424
<DebugType>full</DebugType>
2525
<Optimize>false</Optimize>
26-
<OutputPath>..\Debug\bin\</OutputPath>
2726
<DefineConstants>DEBUG;TRACE</DefineConstants>
2827
<ErrorReport>prompt</ErrorReport>
2928
<WarningLevel>4</WarningLevel>
3029
<DocumentationFile>
3130
</DocumentationFile>
3231
<Prefer32Bit>true</Prefer32Bit>
32+
<OutputPath>bin\Debug\</OutputPath>
3333
</PropertyGroup>
3434
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
3535
<PlatformTarget>AnyCPU</PlatformTarget>
3636
<DebugType>pdbonly</DebugType>
3737
<Optimize>true</Optimize>
38-
<OutputPath>..\Release\bin\</OutputPath>
3938
<DefineConstants>TRACE</DefineConstants>
4039
<ErrorReport>prompt</ErrorReport>
4140
<WarningLevel>4</WarningLevel>
4241
<DocumentationFile>
4342
</DocumentationFile>
4443
<Prefer32Bit>true</Prefer32Bit>
44+
<OutputPath>bin\Release\</OutputPath>
4545
</PropertyGroup>
4646
<PropertyGroup>
4747
<SignAssembly>true</SignAssembly>

ConfuserEx/ConfuserEx.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,21 +21,21 @@
2121
</PropertyGroup>
2222
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
2323
<DebugSymbols>true</DebugSymbols>
24-
<OutputPath>..\Debug\bin\</OutputPath>
2524
<DefineConstants>DEBUG;TRACE</DefineConstants>
2625
<DebugType>full</DebugType>
2726
<PlatformTarget>AnyCPU</PlatformTarget>
2827
<ErrorReport>prompt</ErrorReport>
2928
<Prefer32Bit>false</Prefer32Bit>
29+
<OutputPath>bin\Debug\</OutputPath>
3030
</PropertyGroup>
3131
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
32-
<OutputPath>..\Release\bin\</OutputPath>
3332
<DefineConstants>TRACE</DefineConstants>
3433
<Optimize>true</Optimize>
3534
<DebugType>pdbonly</DebugType>
3635
<PlatformTarget>AnyCPU</PlatformTarget>
3736
<ErrorReport>prompt</ErrorReport>
3837
<Prefer32Bit>false</Prefer32Bit>
38+
<OutputPath>bin\Release\</OutputPath>
3939
</PropertyGroup>
4040
<PropertyGroup>
4141
<ApplicationIcon>ConfuserEx.ico</ApplicationIcon>

appveyor.yml

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,25 @@ build:
2121
project: Confuser2.sln
2222
verbosity: minimal
2323

24+
after_build:
25+
- pwsh: >-
26+
Push-Location Confuser.CLI\bin\$env:CONFIGURATION;
27+
. 7z a ..\..\..\ConfuserEx-CLI.zip "-xr!*.pdb" "-xr!*.xml";
28+
Pop-Location
29+
- pwsh: >-
30+
Push-Location ConfuserEx\bin\$env:CONFIGURATION;
31+
. 7z a ..\..\..\ConfuserEx-GUI.zip "-xr!*.pdb" "-xr!*.xml";
32+
Pop-Location
33+
- pwsh: >-
34+
Push-Location Confuser.CLI\bin\$env:CONFIGURATION;
35+
. 7z a ..\..\..\ConfuserEx.zip "-xr!*.pdb" "-xr!*.xml";
36+
Pop-Location;
37+
Push-Location ConfuserEx\bin\$env:CONFIGURATION;
38+
. 7z a ..\..\..\ConfuserEx.zip "-xr!*.pdb" "-xr!*.xml" -y;
39+
Pop-Location
40+
2441
artifacts:
25-
- path: Release/bin
26-
name: ConfuserEx
27-
type: zip
42+
- path: ConfuserEx*.zip
2843
- path: Confuser.MSBuild.Tasks/bin/Release/*.nupkg
2944
name: ConfuserEx.MSBuild
3045

@@ -47,6 +62,6 @@ deploy:
4762
APPVEYOR_REPO_TAG: true
4863
- provider: NuGet
4964
api_key:
50-
secure: 2eArlJvohLPPZqV6hx7bSjZBY+G4OFCp9VMecUH3YvferKQIqwVoa1BGMWGgDw51
65+
secure: yqARg8GA5EIFGPVpYPZeS3I5gjsByMvYLVfXylpC9mF33W4Z40tAmE9q0/yf2Xne
5166
on:
52-
APPVEYOR_REPO_TAG: true
67+
APPVEYOR_REPO_TAG: true

0 commit comments

Comments
 (0)