Skip to content

Commit

Permalink
Release 2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
aelij committed Apr 2, 2016
1 parent 021c7a3 commit 04b77c7
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 10 deletions.
4 changes: 2 additions & 2 deletions src/WpfContrib/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
[assembly: AssemblyCompany("Eli Arbel")]
[assembly: AssemblyProduct("WPF Contrib")]
[assembly: AssemblyCopyright("Copyright 2015")]
[assembly: AssemblyVersion("2.2.0.0")]
[assembly: AssemblyFileVersion("2.2.0.0")]
[assembly: AssemblyVersion("2.3.0.0")]
[assembly: AssemblyFileVersion("2.3.0.0")]
[assembly: NeutralResourcesLanguage("en-US")]
[assembly: ThemeInfo(
ResourceDictionaryLocation.None, // theme-specific
Expand Down
6 changes: 3 additions & 3 deletions src/WpfContribTest/WpfContribTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
<UseVSHostingProcess>true</UseVSHostingProcess>
</PropertyGroup>
<PropertyGroup>
<ManifestCertificateThumbprint>AC5C9D2D5395744EC9FA5861F38FA859A84F704A</ManifestCertificateThumbprint>
<ManifestCertificateThumbprint>DB794FBDC173BCFE70C76F4D07CEA44D3FAD1B84</ManifestCertificateThumbprint>
</PropertyGroup>
<PropertyGroup>
<ManifestKeyFile>WpfContribTest_TemporaryKey.pfx</ManifestKeyFile>
Expand All @@ -63,7 +63,7 @@
<GenerateManifests>false</GenerateManifests>
</PropertyGroup>
<PropertyGroup>
<SignManifests>false</SignManifests>
<SignManifests>true</SignManifests>
</PropertyGroup>
<PropertyGroup>
<TargetZone>Internet</TargetZone>
Expand Down Expand Up @@ -126,9 +126,9 @@
<Compile Include="Properties\AssemblyInfo.cs">
<SubType>Code</SubType>
</Compile>
<None Include="WpfContribTest_TemporaryKey.pfx" />
<None Include="Properties\app.manifest" />
<AppDesigner Include="Properties\" />
<None Include="WpfContribTest_TemporaryKey.pfx" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\WpfContribTestPages\WpfContribTestPages.csproj">
Expand Down
Binary file not shown.
6 changes: 3 additions & 3 deletions src/WpfContribTestBrowser/WpfContribTestBrowser.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
<HostInBrowser>true</HostInBrowser>
<TargetZone>Internet</TargetZone>
<GenerateManifests>true</GenerateManifests>
<SignManifests>false</SignManifests>
<SignManifests>true</SignManifests>
<ManifestKeyFile>WpfContribTestBrowser_TemporaryKey.pfx</ManifestKeyFile>
<ManifestCertificateThumbprint>8213BD846C23739AE0225E57C717C26C5FFED5D3</ManifestCertificateThumbprint>
<ManifestCertificateThumbprint>A8AA3D89528F67DF9CDBAF2F222B7DB595A5E002</ManifestCertificateThumbprint>
<FileUpgradeFlags>
</FileUpgradeFlags>
<UpgradeBackupLocation>
Expand Down Expand Up @@ -106,9 +106,9 @@
<Compile Include="Properties\AssemblyInfo.cs">
<SubType>Code</SubType>
</Compile>
<None Include="WpfContribTestBrowser_TemporaryKey.pfx" />
<None Include="Properties\app.manifest" />
<AppDesigner Include="Properties\" />
<None Include="WpfContribTestBrowser_TemporaryKey.pfx" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\WpfContribTestPages\WpfContribTestPages.csproj">
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion src/WpfContribTestPages/Pages/Introduction.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<Grid>
<TextBlock Margin="10">
<Bold FontSize="16">Welcome to the WPF Contrib Library</Bold>
<Run>(March 2014)</Run>
<Run x:Name="Version"></Run>
<LineBreak />
Please select a demo from the left.
</TextBlock>
Expand Down
1 change: 1 addition & 0 deletions src/WpfContribTestPages/Pages/Introduction.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ public partial class Introduction
public Introduction()
{
InitializeComponent();
Version.Text = typeof(Avalon.Windows.Controls.TaskDialog).Assembly.GetName().Version.ToString();
}
}
}
5 changes: 4 additions & 1 deletion src/WpfContribTestPages/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using System.Reflection;
using System.Runtime.InteropServices;
using System.Security;
using System.Windows;

// General Information about an assembly is controlled through the following
Expand Down Expand Up @@ -53,4 +54,6 @@
// [assembly: AssemblyVersion("1.0.*")]

[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

[assembly: AllowPartiallyTrustedCallers]

0 comments on commit 04b77c7

Please sign in to comment.