Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleanup script useful during development and build process. #25

Open
wants to merge 16 commits into
base: master
Choose a base branch
from
Open
Prev Previous commit
Next Next commit
vs2022 build using msbuild
  • Loading branch information
umeshwaghode committed Jul 6, 2022
commit 7aafc5cb524d978e3642f824114f97dcaff5a004
12 changes: 6 additions & 6 deletions CxViewer.sln
Original file line number Diff line number Diff line change
@@ -75,8 +75,8 @@ Global
{9B747803-8500-4115-953E-CE7CBF2A14C2}.Debug|x64.Build.0 = Debug|Any CPU
{9B747803-8500-4115-953E-CE7CBF2A14C2}.Debug|x86.ActiveCfg = Debug|Any CPU
{9B747803-8500-4115-953E-CE7CBF2A14C2}.Debug|x86.Build.0 = Debug|Any CPU
{9B747803-8500-4115-953E-CE7CBF2A14C2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9B747803-8500-4115-953E-CE7CBF2A14C2}.Release|Any CPU.Build.0 = Release|Any CPU
{9B747803-8500-4115-953E-CE7CBF2A14C2}.Release|Any CPU.ActiveCfg = Release|x64
{9B747803-8500-4115-953E-CE7CBF2A14C2}.Release|Any CPU.Build.0 = Release|x64
{9B747803-8500-4115-953E-CE7CBF2A14C2}.Release|x64.ActiveCfg = Release|Any CPU
{9B747803-8500-4115-953E-CE7CBF2A14C2}.Release|x64.Build.0 = Release|Any CPU
{9B747803-8500-4115-953E-CE7CBF2A14C2}.Release|x86.ActiveCfg = Release|x64
@@ -95,8 +95,8 @@ Global
{DEFBE28B-3B2E-4324-BBAE-9B9783A29607}.Debug|x86.Build.0 = Debug|x86
{DEFBE28B-3B2E-4324-BBAE-9B9783A29607}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DEFBE28B-3B2E-4324-BBAE-9B9783A29607}.Release|Any CPU.Build.0 = Release|Any CPU
{DEFBE28B-3B2E-4324-BBAE-9B9783A29607}.Release|x64.ActiveCfg = Release|Any CPU
{DEFBE28B-3B2E-4324-BBAE-9B9783A29607}.Release|x64.Build.0 = Release|Any CPU
{DEFBE28B-3B2E-4324-BBAE-9B9783A29607}.Release|x64.ActiveCfg = Release|x64
{DEFBE28B-3B2E-4324-BBAE-9B9783A29607}.Release|x64.Build.0 = Release|x64
{DEFBE28B-3B2E-4324-BBAE-9B9783A29607}.Release|x86.ActiveCfg = Release|x86
{DEFBE28B-3B2E-4324-BBAE-9B9783A29607}.Release|x86.Build.0 = Release|x86
{4B9BE5FD-303E-4270-9C4D-FA3BDE6C34EB}.Build|Any CPU.ActiveCfg = Build|Any CPU
@@ -111,8 +111,8 @@ Global
{4B9BE5FD-303E-4270-9C4D-FA3BDE6C34EB}.Debug|x64.Build.0 = Debug|Any CPU
{4B9BE5FD-303E-4270-9C4D-FA3BDE6C34EB}.Debug|x86.ActiveCfg = Debug|Any CPU
{4B9BE5FD-303E-4270-9C4D-FA3BDE6C34EB}.Debug|x86.Build.0 = Debug|Any CPU
{4B9BE5FD-303E-4270-9C4D-FA3BDE6C34EB}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4B9BE5FD-303E-4270-9C4D-FA3BDE6C34EB}.Release|Any CPU.Build.0 = Release|Any CPU
{4B9BE5FD-303E-4270-9C4D-FA3BDE6C34EB}.Release|Any CPU.ActiveCfg = Release|x64
{4B9BE5FD-303E-4270-9C4D-FA3BDE6C34EB}.Release|Any CPU.Build.0 = Release|x64
{4B9BE5FD-303E-4270-9C4D-FA3BDE6C34EB}.Release|x64.ActiveCfg = Release|Any CPU
{4B9BE5FD-303E-4270-9C4D-FA3BDE6C34EB}.Release|x64.Build.0 = Release|Any CPU
{4B9BE5FD-303E-4270-9C4D-FA3BDE6C34EB}.Release|x86.ActiveCfg = Release|x86
4 changes: 2 additions & 2 deletions ci.msbuild2022
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ msbuild ci.msbuild /t:Pack - for pack
<PropertyGroup>
<WorkingFolder>$(MSBuildProjectDirectory)</WorkingFolder>
<Configuration>Release</Configuration>
<Platform>AnyCPU</Platform>
<Platform>x64</Platform>
<SolutionFile>$(WorkingFolder)\CxViewer.sln</SolutionFile>
<ProjectFile>$(WorkingFolder)\CxViewer2022\CxViewer2022.csproj</ProjectFile>
<MSBuildCommunityTasksPath>$(WorkingFolder)\.build</MSBuildCommunityTasksPath>
@@ -36,7 +36,7 @@ msbuild ci.msbuild /t:Pack - for pack
</Target>

<Target Name="CopyToArtifacts">
<Copy SourceFiles="$(WorkingFolder)\CxViewer2022\bin\Release\CxViewer2022.vsix"
<Copy SourceFiles="$(WorkingFolder)\CxViewer2022\bin\x64\Release\CxViewer2022.vsix"
DestinationFiles="$(WorkingFolder)\Artifacts\CxViewerVSIX-2022.vsix" />
</Target>