Skip to content

Commit

Permalink
Release v1.4.4.1
Browse files Browse the repository at this point in the history
This release is identical functionality wise to v1.4.4.0.
It's just re-packaged according new CI to include all binaries stamped with the same version number.
  • Loading branch information
oleg-shilo committed May 4, 2017
1 parent a4660a6 commit f7af277
Show file tree
Hide file tree
Showing 20 changed files with 121 additions and 1,136 deletions.
18 changes: 4 additions & 14 deletions Source/src/WixSharp.Msi/WixSharp.Msi/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("WixSharp.Msi")]
Expand All @@ -14,20 +14,10 @@
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM componenets. If you need to access a type in this assembly from
// Setting ComVisible to false makes the types in this assembly not visible
// to COM componenets. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("8afbd3fc-0a39-4db5-b592-b2981982b31d")]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
[assembly: AssemblyVersion("1.3.0.0")]
[assembly: AssemblyFileVersion("1.3.0.0")]
[assembly: Guid("8afbd3fc-0a39-4db5-b592-b2981982b31d")]
3 changes: 3 additions & 0 deletions Source/src/WixSharp.Msi/WixSharp.Msi/WixSharp.Msi.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,9 @@
<Reference Include="System.Xml.Linq" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\WixSharp\Properties\AssemblyInfo.version.cs">
<Link>Properties\AssemblyInfo.version.cs</Link>
</Compile>
<Compile Include="..\..\WixSharp\SharedExtensions.cs">
<Link>SharedExtensions.cs</Link>
</Compile>
Expand Down
4 changes: 2 additions & 2 deletions Source/src/WixSharp.Samples/VSProjects/WinService_WiX.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
Expand Down Expand Up @@ -106,4 +106,4 @@
<Target Name="AfterBuild">
</Target>
-->
</Project>
</Project>
34 changes: 17 additions & 17 deletions Source/src/WixSharp.Samples/Wix# Samples/WildCard Files/setup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,33 +3,34 @@
//css_ref System.Core;
using System;
using System.Linq;
using Wix = WixSharp;
using WixSharp;
using System.Collections.Generic;

using Wix = WixSharp;

class Script
{
static public void Main(string[] args)
{
var project =

new Project("MyProduct",
new Dir(@"%ProgramFiles%\MyCompany\MyProduct",
new DirFiles(@"Release\Bin\*.*"),
new Dir("GlobalResources",
new DirFiles(@"Release\Bin\GlobalResources\*.*")),
new Dir("Images",
new DirFiles(@"Release\Bin\Images\*.*")),
new ExeFileShortcut("Uninstall MyProduct", "[System64Folder]msiexec.exe", "/x [ProductCode]")));
var project =

new Project("MyProduct",
new Dir(@"%ProgramFiles%\MyCompany\MyProduct",
new DirFiles(@"Release\Bin\*.*"),
new Dir("GlobalResources",
new DirFiles(@"Release\Bin\GlobalResources\*.*")),
new Dir("Images",
new DirFiles(@"Release\Bin\Images\*.*")),
new ExeFileShortcut("Uninstall MyProduct", "[System64Folder]msiexec.exe", "/x [ProductCode]")));

project.UI = WUI.WixUI_FeatureTree;
project.GUID = new Guid("{AC19C6E4-9724-4e90-8AC7-6E69B4AB7562}");

project.ResolveWildCards();

var exeFile = project.AllFiles.Single(f=>f.Name.EndsWith("some.exe"));
exeFile.Shortcuts = new[] {
var exeFile = project.AllFiles.Single(f => f.Name.EndsWith("some.exe"));

exeFile.Shortcuts = new[] {
new FileShortcut("some.exe", "INSTALLDIR"),
new FileShortcut("some.exe", @"%Desktop%")
};
Expand All @@ -38,5 +39,4 @@ static public void Main(string[] args)

project.BuildMsi();
}
}

}
Binary file modified Source/src/WixSharp.Samples/WixSharp.Lab.dll
Binary file not shown.
20 changes: 20 additions & 0 deletions Source/src/WixSharp.Samples/WixSharp.Lab.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified Source/src/WixSharp.Samples/WixSharp.Msi.dll
Binary file not shown.
Binary file modified Source/src/WixSharp.Samples/WixSharp.UI.dll
Binary file not shown.
Binary file modified Source/src/WixSharp.Samples/WixSharp.dll
Binary file not shown.
Loading

0 comments on commit f7af277

Please sign in to comment.