diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 08821e5..0000000 --- a/.gitignore +++ /dev/null @@ -1,9 +0,0 @@ -# Ignore .vs folder -.vs/ - -# Ignore .suo files -*.suo - -# Ignore bin and obj folders -*bin/ -*obj/ \ No newline at end of file diff --git a/.releaseconfig/ReleaseConfig.xml b/.releaseconfig/ReleaseConfig.xml deleted file mode 100644 index c2bb0ed..0000000 --- a/.releaseconfig/ReleaseConfig.xml +++ /dev/null @@ -1,67 +0,0 @@ - - - AssemblyInfoProject - true - %version% - %date% - - - /AssemblyInfoHelper_WPF/Properties/AssemblyInfo.cs - - - /README.md - - - /CHANGELOG.md - - - - - true - \AssemblyInfoHelper_WPF\bin\Release\AssemblyInfoHelper_WPF.dll - \bin\AssemblyInfoHelper_WPF.dll - - - true - \AssemblyInfoHelper_WPF\bin\Release\Markdig.dll - \bin\Markdig.dll - - - true - \AssemblyInfoProject_WPF\bin\Release\AssemblyInfoProject_WPF.exe - \bin\AssemblyInfoProject_WPF.exe - - - true - \AssemblyInfoHelper_WPF\bin\Release\ControlzEx.dll - \bin\ControlzEx.dll - - - true - \AssemblyInfoHelper_WPF\bin\Release\MahApps.Metro.dll - \bin\MahApps.Metro.dll - - - true - \AssemblyInfoHelper_WPF\bin\Release\MahApps.Metro.IconPacks.Core.dll - \bin\MahApps.Metro.IconPacks.Core.dll - - - true - \AssemblyInfoHelper_WPF\bin\Release\MahApps.Metro.IconPacks.dll - \bin\MahApps.Metro.IconPacks.dll - - - true - \AssemblyInfoHelper_WPF\bin\Release\Microsoft.Xaml.Behaviors.dll - \bin\Microsoft.Xaml.Behaviors.dll - - - - - C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\15.0\Bin\MSBuild.exe - AssemblyInfoProject.sln /p:Configuration=Release - \ - - - \ No newline at end of file diff --git a/AssemblyInfoHelper_WPF/AssemblyInfoHelper.cs b/AssemblyInfoHelper_WPF/AssemblyInfoHelper.cs deleted file mode 100644 index c2e7076..0000000 --- a/AssemblyInfoHelper_WPF/AssemblyInfoHelper.cs +++ /dev/null @@ -1,215 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Reflection; -using System.IO; - -namespace AssemblyInfoHelper_WPF -{ - /// - /// Get the values of the Assembly attributes - /// - public static class AssemblyInfoHelperClass - { - /// - /// Assembly title attribute - /// - public static string AssemblyTitle - { - get - { - object[] assemblyObjects = Assembly.GetEntryAssembly().GetCustomAttributes(typeof(AssemblyTitleAttribute), true); - - //object[] assemblyObjects = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyTitleAttribute), true); - - if (assemblyObjects.Length > 0) - { - return ((AssemblyTitleAttribute)assemblyObjects[0]).Title; - } - return ""; - } - } - - /// - /// Assembly description attribute - /// - public static string AssemblyDescription - { - get - { - object[] assemblyObjects = Assembly.GetEntryAssembly().GetCustomAttributes(typeof(AssemblyDescriptionAttribute), true); - - if (assemblyObjects.Length > 0) - { - return ((AssemblyDescriptionAttribute)assemblyObjects[0]).Description; - } - return ""; - } - } - - /// - /// Assembly configuration attribute - /// - public static string AssemblyConfiguration - { - get - { - object[] assemblyObjects = Assembly.GetEntryAssembly().GetCustomAttributes(typeof(AssemblyConfigurationAttribute), true); - - if (assemblyObjects.Length > 0) - { - return ((AssemblyConfigurationAttribute)assemblyObjects[0]).Configuration; - } - return ""; - } - } - - /// - /// Assembly company attribute - /// - public static string AssemblyCompany - { - get - { - object[] assemblyObjects = Assembly.GetEntryAssembly().GetCustomAttributes(typeof(AssemblyCompanyAttribute), true); - - if (assemblyObjects.Length > 0) - { - return ((AssemblyCompanyAttribute)assemblyObjects[0]).Company; - } - return ""; - } - } - - /// - /// Assembly product attribute - /// - public static string AssemblyProduct - { - get - { - object[] assemblyObjects = Assembly.GetEntryAssembly().GetCustomAttributes(typeof(AssemblyProductAttribute), true); - - if (assemblyObjects.Length > 0) - { - return ((AssemblyProductAttribute)assemblyObjects[0]).Product; - } - return ""; - } - } - - /// - /// Assembly copyright attribute - /// - public static string AssemblyCopyright - { - get - { - object[] assemblyObjects = Assembly.GetEntryAssembly().GetCustomAttributes(typeof(AssemblyCopyrightAttribute), true); - - if (assemblyObjects.Length > 0) - { - return ((AssemblyCopyrightAttribute)assemblyObjects[0]).Copyright; - } - return ""; - } - } - - /// - /// Assembly trademark attribute - /// - public static string AssemblyTrademark - { - get - { - object[] assemblyObjects = Assembly.GetEntryAssembly().GetCustomAttributes(typeof(AssemblyTrademarkAttribute), true); - - if (assemblyObjects.Length > 0) - { - return ((AssemblyTrademarkAttribute)assemblyObjects[0]).Trademark; - } - return ""; - } - } - - /// - /// Assembly culture attribute - /// - public static string AssemblyCulture - { - get - { - object[] assemblyObjects = Assembly.GetEntryAssembly().GetCustomAttributes(typeof(AssemblyCultureAttribute), true); - - if (assemblyObjects.Length > 0) - { - return ((AssemblyCultureAttribute)assemblyObjects[0]).Culture; - } - return ""; - } - } - - /// - /// Assembly version attribute - /// - public static string AssemblyVersion - { - get - { - return Assembly.GetEntryAssembly().GetName().Version.ToString(); - } - } - - /// - /// Assembly file version attribute - /// - public static string AssemblyFileVersion - { - get - { - object[] assemblyObjects = Assembly.GetEntryAssembly().GetCustomAttributes(typeof(AssemblyFileVersionAttribute), true); - - if (assemblyObjects.Length > 0) - { - return ((AssemblyFileVersionAttribute)assemblyObjects[0]).Version; - } - return ""; - } - } - - /// - /// Get the time of the last build of the assembly. - /// - /// last build time - /// see: https://stackoverflow.com/questions/1600962/displaying-the-build-date?utm_medium=organic&utm_source=google_rich_qa&utm_campaign=google_rich_qa - public static DateTime AssemblyLinkerTime - { - get - { - Assembly assembly = Assembly.GetEntryAssembly(); - - var filePath = assembly.Location; - const int c_PeHeaderOffset = 60; - const int c_LinkerTimestampOffset = 8; - - var buffer = new byte[2048]; - - using (var stream = new FileStream(filePath, FileMode.Open, FileAccess.Read)) - stream.Read(buffer, 0, 2048); - - var offset = BitConverter.ToInt32(buffer, c_PeHeaderOffset); - var secondsSince1970 = BitConverter.ToInt32(buffer, offset + c_LinkerTimestampOffset); - var epoch = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc); - - var linkTimeUtc = epoch.AddSeconds(secondsSince1970); - - var localTime = TimeZoneInfo.ConvertTimeFromUtc(linkTimeUtc, TimeZoneInfo.Local); - - return localTime; - } - } - - } -} diff --git a/AssemblyInfoHelper_WPF/AssemblyInfoHelper_WPF.csproj b/AssemblyInfoHelper_WPF/AssemblyInfoHelper_WPF.csproj deleted file mode 100644 index ee46794..0000000 --- a/AssemblyInfoHelper_WPF/AssemblyInfoHelper_WPF.csproj +++ /dev/null @@ -1,101 +0,0 @@ - - - - - Debug - AnyCPU - {97B2DB9C-A5B5-42A9-8616-A9CDC8052D25} - {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - Library - Properties - AssemblyInfoHelper_WPF - AssemblyInfoHelper_WPF - v4.5 - 512 - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - copy "$(SolutionDir)README.md" "$(TargetDir)README.md" -copy "$(SolutionDir)CHANGELOG.md" "$(TargetDir)CHANGELOG.md" - - - - ..\packages\ControlzEx.4.0.0-alpha0222\lib\net45\ControlzEx.dll - - - ..\packages\MahApps.Metro.2.0.0-alpha0261\lib\net45\MahApps.Metro.dll - - - ..\packages\MahApps.Metro.IconPacks.3.0.0-alpha0103\lib\net45\MahApps.Metro.IconPacks.dll - - - ..\packages\MahApps.Metro.IconPacks.3.0.0-alpha0103\lib\net45\MahApps.Metro.IconPacks.Core.dll - - - ..\packages\Markdig.0.15.2\lib\net40\Markdig.dll - - - ..\packages\Microsoft.Xaml.Behaviors.Wpf.1.0.1\lib\net45\Microsoft.Xaml.Behaviors.dll - - - - - - - - - - - - - - - - - - - - - - - True - True - Resources.resx - - - WindowAssemblyInfo.xaml - - - - - MSBuild:Compile - Designer - - - - - - - - ResXFileCodeGenerator - Resources.Designer.cs - - - - \ No newline at end of file diff --git a/AssemblyInfoHelper_WPF/Properties/AssemblyInfo.cs b/AssemblyInfoHelper_WPF/Properties/AssemblyInfo.cs deleted file mode 100644 index 365b3ea..0000000 --- a/AssemblyInfoHelper_WPF/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// Allgemeine Informationen über eine Assembly werden über die folgenden -// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, -// die einer Assembly zugeordnet sind. -[assembly: AssemblyTitle("AssemblyInfoHelper_WPF")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("AssemblyInfoHelper_WPF")] -[assembly: AssemblyCopyright("Copyright © 2018")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Durch Festlegen von ComVisible auf FALSE werden die Typen in dieser Assembly -// für COM-Komponenten unsichtbar. Wenn Sie auf einen Typ in dieser Assembly von -// COM aus zugreifen müssen, sollten Sie das ComVisible-Attribut für diesen Typ auf "True" festlegen. -[assembly: ComVisible(false)] - -// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird -[assembly: Guid("97b2db9c-a5b5-42a9-8616-a9cdc8052d25")] - -// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: -// -// Hauptversion -// Nebenversion -// Buildnummer -// Revision -// -// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden, -// indem Sie "*" wie unten gezeigt eingeben: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("4.0.0.0")] -[assembly: AssemblyFileVersion("4.0.0.0")] diff --git a/AssemblyInfoHelper_WPF/Properties/Resources.Designer.cs b/AssemblyInfoHelper_WPF/Properties/Resources.Designer.cs deleted file mode 100644 index a91adcf..0000000 --- a/AssemblyInfoHelper_WPF/Properties/Resources.Designer.cs +++ /dev/null @@ -1,63 +0,0 @@ -//------------------------------------------------------------------------------ -// -// Dieser Code wurde von einem Tool generiert. -// Laufzeitversion:4.0.30319.42000 -// -// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn -// der Code erneut generiert wird. -// -//------------------------------------------------------------------------------ - -namespace AssemblyInfoHelper_WPF.Properties { - using System; - - - /// - /// Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw. - /// - // Diese Klasse wurde von der StronglyTypedResourceBuilder automatisch generiert - // -Klasse über ein Tool wie ResGen oder Visual Studio automatisch generiert. - // Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen - // mit der /str-Option erneut aus, oder Sie erstellen Ihr VS-Projekt neu. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - internal class Resources { - - private static global::System.Resources.ResourceManager resourceMan; - - private static global::System.Globalization.CultureInfo resourceCulture; - - [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal Resources() { - } - - /// - /// Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird. - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Resources.ResourceManager ResourceManager { - get { - if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("AssemblyInfoHelper_WPF.Properties.Resources", typeof(Resources).Assembly); - resourceMan = temp; - } - return resourceMan; - } - } - - /// - /// Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle - /// Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden. - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Globalization.CultureInfo Culture { - get { - return resourceCulture; - } - set { - resourceCulture = value; - } - } - } -} diff --git a/AssemblyInfoHelper_WPF/Properties/Resources.resx b/AssemblyInfoHelper_WPF/Properties/Resources.resx deleted file mode 100644 index 1af7de1..0000000 --- a/AssemblyInfoHelper_WPF/Properties/Resources.resx +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - \ No newline at end of file diff --git a/AssemblyInfoHelper_WPF/WindowAssemblyInfo.xaml b/AssemblyInfoHelper_WPF/WindowAssemblyInfo.xaml deleted file mode 100644 index bcdfa7f..0000000 --- a/AssemblyInfoHelper_WPF/WindowAssemblyInfo.xaml +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/AssemblyInfoHelper_WPF/WindowAssemblyInfo.xaml.cs b/AssemblyInfoHelper_WPF/WindowAssemblyInfo.xaml.cs deleted file mode 100644 index 0c69067..0000000 --- a/AssemblyInfoHelper_WPF/WindowAssemblyInfo.xaml.cs +++ /dev/null @@ -1,94 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows; -using System.Windows.Controls; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Input; -using System.Windows.Media; -using System.Windows.Media.Imaging; -using System.Windows.Navigation; -using System.Windows.Shapes; - -using Markdig; -using MahApps.Metro.Controls; -using MahApps.Metro.Controls.Dialogs; -using System.IO; - -namespace AssemblyInfoHelper_WPF -{ - /// - /// Interaktionslogik für WindowAssemblyInfo.xaml - /// - public partial class WindowAssemblyInfo : MetroWindow - { - public string AssemblyInfoHelperVersion - { - get { return System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString(); } - } - - private string _readmePath; - private string _changeLogPath; - - /// - /// Show the WindowAssemblyInfo and get the README.md and CHANGELOG.md files from the given paths. - /// - /// Path for the README.md file. - /// Path for the CHANGELOG.md file. - public WindowAssemblyInfo(string readmePath, string changeLogPath) - { - InitializeComponent(); - _readmePath = readmePath; - _changeLogPath = changeLogPath; - } - - /// - /// Show the WindowAssemblyInfo and get the readme and changelog content from the README.md and CHANGELOG.md files in the same folder as the executable. (Application.StartupPath) - /// - public WindowAssemblyInfo() - { - InitializeComponent(); - string startupPath = System.AppDomain.CurrentDomain.BaseDirectory; - _readmePath = startupPath + @"README.md"; - _changeLogPath = startupPath + @"CHANGELOG.md"; - } - - private void Window_Loaded(object sender, RoutedEventArgs e) - { - this.Icon = Application.Current.MainWindow.Icon; - - MarkdownPipeline pipeline = new MarkdownPipelineBuilder().UseAdvancedExtensions().Build(); - string readmeText = ""; - string changelogText = ""; - - if (File.Exists(_readmePath)) - { - readmeText += Markdig.Markdown.ToHtml(File.ReadAllText(_readmePath), pipeline); - } - else - { - readmeText += "No readme file found in:

" + _readmePath; - } - - if (File.Exists(_changeLogPath)) - { - changelogText += Markdig.Markdown.ToHtml(File.ReadAllText(_changeLogPath), pipeline); - } - else - { - changelogText += "No changelog file found in:

" + Environment.NewLine + _changeLogPath; - } - - webBrowser_Readme.NavigateToString(readmeText); - webBrowser_Changelog.NavigateToString(changelogText); - } - - private async void BtnAssemblyVerion_Click(object sender, RoutedEventArgs e) - { - await this.ShowMessageAsync("AssemblyInfoHelper Version", AssemblyInfoHelperVersion, MessageDialogStyle.Affirmative, new MetroDialogSettings() { OwnerCanCloseWithDialog = true }); - } - } -} diff --git a/AssemblyInfoHelper_WPF/packages.config b/AssemblyInfoHelper_WPF/packages.config deleted file mode 100644 index 998d365..0000000 --- a/AssemblyInfoHelper_WPF/packages.config +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/AssemblyInfoProject.sln b/AssemblyInfoProject.sln deleted file mode 100644 index d76885a..0000000 --- a/AssemblyInfoProject.sln +++ /dev/null @@ -1,40 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 15 -VisualStudioVersion = 15.0.27703.2018 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{6183ECCC-32FE-460F-BCA0-AD134CB2EC84}" - ProjectSection(SolutionItems) = preProject - CHANGELOG.md = CHANGELOG.md - README.md = README.md - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AssemblyInfoHelper_WPF", "AssemblyInfoHelper_WPF\AssemblyInfoHelper_WPF.csproj", "{97B2DB9C-A5B5-42A9-8616-A9CDC8052D25}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AssemblyInfoProject_WPF", "AssemblyInfoProject_WPF\AssemblyInfoProject_WPF.csproj", "{55BB509D-1B63-45C3-B1B7-7CA9915B2B19}" - ProjectSection(ProjectDependencies) = postProject - {97B2DB9C-A5B5-42A9-8616-A9CDC8052D25} = {97B2DB9C-A5B5-42A9-8616-A9CDC8052D25} - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {97B2DB9C-A5B5-42A9-8616-A9CDC8052D25}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {97B2DB9C-A5B5-42A9-8616-A9CDC8052D25}.Debug|Any CPU.Build.0 = Debug|Any CPU - {97B2DB9C-A5B5-42A9-8616-A9CDC8052D25}.Release|Any CPU.ActiveCfg = Release|Any CPU - {97B2DB9C-A5B5-42A9-8616-A9CDC8052D25}.Release|Any CPU.Build.0 = Release|Any CPU - {55BB509D-1B63-45C3-B1B7-7CA9915B2B19}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {55BB509D-1B63-45C3-B1B7-7CA9915B2B19}.Debug|Any CPU.Build.0 = Debug|Any CPU - {55BB509D-1B63-45C3-B1B7-7CA9915B2B19}.Release|Any CPU.ActiveCfg = Release|Any CPU - {55BB509D-1B63-45C3-B1B7-7CA9915B2B19}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {8157C83E-02F6-4F2B-B28D-DFFFB4385872} - EndGlobalSection -EndGlobal diff --git a/AssemblyInfoProject_WPF/App.config b/AssemblyInfoProject_WPF/App.config deleted file mode 100644 index 8e15646..0000000 --- a/AssemblyInfoProject_WPF/App.config +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/AssemblyInfoProject_WPF/App.xaml b/AssemblyInfoProject_WPF/App.xaml deleted file mode 100644 index be446a7..0000000 --- a/AssemblyInfoProject_WPF/App.xaml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - diff --git a/AssemblyInfoProject_WPF/App.xaml.cs b/AssemblyInfoProject_WPF/App.xaml.cs deleted file mode 100644 index 59fad4c..0000000 --- a/AssemblyInfoProject_WPF/App.xaml.cs +++ /dev/null @@ -1,17 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Configuration; -using System.Data; -using System.Linq; -using System.Threading.Tasks; -using System.Windows; - -namespace AssemblyInfoProject_WPF -{ - /// - /// Interaktionslogik für "App.xaml" - /// - public partial class App : Application - { - } -} diff --git a/AssemblyInfoProject_WPF/AssemblyInfoProject_WPF.csproj b/AssemblyInfoProject_WPF/AssemblyInfoProject_WPF.csproj deleted file mode 100644 index cf52724..0000000 --- a/AssemblyInfoProject_WPF/AssemblyInfoProject_WPF.csproj +++ /dev/null @@ -1,133 +0,0 @@ - - - - - Debug - AnyCPU - {55BB509D-1B63-45C3-B1B7-7CA9915B2B19} - WinExe - AssemblyInfoProject_WPF - AssemblyInfoProject_WPF - v4.5 - 512 - {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - 4 - - - AnyCPU - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - AnyCPU - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - copy "$(SolutionDir)README.md" "$(TargetDir)README.md" -copy "$(SolutionDir)CHANGELOG.md" "$(TargetDir)CHANGELOG.md" - - - - ..\AssemblyInfoHelper_WPF\bin\Debug\AssemblyInfoHelper_WPF.dll - - - ..\packages\ControlzEx.4.0.0-alpha0222\lib\net45\ControlzEx.dll - - - ..\packages\MahApps.Metro.2.0.0-alpha0261\lib\net45\MahApps.Metro.dll - - - ..\packages\MahApps.Metro.IconPacks.3.0.0-alpha0103\lib\net45\MahApps.Metro.IconPacks.dll - - - ..\packages\MahApps.Metro.IconPacks.3.0.0-alpha0103\lib\net45\MahApps.Metro.IconPacks.Core.dll - - - ..\packages\Microsoft.Xaml.Behaviors.Wpf.1.0.1\lib\net45\Microsoft.Xaml.Behaviors.dll - - - - - - - - - - - - - - 4.0 - - - - - - - - MSBuild:Compile - Designer - - - MSBuild:Compile - Designer - - - App.xaml - Code - - - MainWindow.xaml - Code - - - - - Code - - - True - True - Resources.resx - - - True - Settings.settings - True - - - ResXFileCodeGenerator - Resources.Designer.cs - Designer - - - - SettingsSingleFileGenerator - Settings.Designer.cs - - - - - - - - PreserveNewest - - - - - PreserveNewest - - - - \ No newline at end of file diff --git a/AssemblyInfoProject_WPF/Info.png b/AssemblyInfoProject_WPF/Info.png deleted file mode 100644 index 0639925..0000000 Binary files a/AssemblyInfoProject_WPF/Info.png and /dev/null differ diff --git a/AssemblyInfoProject_WPF/MainWindow.xaml b/AssemblyInfoProject_WPF/MainWindow.xaml deleted file mode 100644 index 282120f..0000000 --- a/AssemblyInfoProject_WPF/MainWindow.xaml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - -