From 1ec7b514791415efd1d9400116cbd0082b48c69a Mon Sep 17 00:00:00 2001 From: Michael Chen Date: Thu, 12 Jul 2018 10:13:00 +0200 Subject: [PATCH] Initial commit --- .gitignore | 398 ++++++++++++++++++++ MandelbrotSet.sln | 25 ++ MandelbrotSet/App.config | 6 + MandelbrotSet/MandelbrotDisplay.Designer.cs | 62 +++ MandelbrotSet/MandelbrotDisplay.cs | 21 ++ MandelbrotSet/MandelbrotDisplay.resx | 120 ++++++ MandelbrotSet/MandelbrotSet.csproj | 67 ++++ MandelbrotSet/Program.cs | 173 +++++++++ MandelbrotSet/Properties/AssemblyInfo.cs | 36 ++ MandelbrotSet/packages.config | 4 + 10 files changed, 912 insertions(+) create mode 100644 .gitignore create mode 100644 MandelbrotSet.sln create mode 100644 MandelbrotSet/App.config create mode 100644 MandelbrotSet/MandelbrotDisplay.Designer.cs create mode 100644 MandelbrotSet/MandelbrotDisplay.cs create mode 100644 MandelbrotSet/MandelbrotDisplay.resx create mode 100644 MandelbrotSet/MandelbrotSet.csproj create mode 100644 MandelbrotSet/Program.cs create mode 100644 MandelbrotSet/Properties/AssemblyInfo.cs create mode 100644 MandelbrotSet/packages.config diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8a30d25 --- /dev/null +++ b/.gitignore @@ -0,0 +1,398 @@ +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. +## +## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore + +# User-specific files +*.rsuser +*.suo +*.user +*.userosscache +*.sln.docstates + +# User-specific files (MonoDevelop/Xamarin Studio) +*.userprefs + +# Mono auto generated files +mono_crash.* + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +[Ww][Ii][Nn]32/ +[Aa][Rr][Mm]/ +[Aa][Rr][Mm]64/ +bld/ +[Bb]in/ +[Oo]bj/ +[Ll]og/ +[Ll]ogs/ + +# Visual Studio 2015/2017 cache/options directory +.vs/ +# Uncomment if you have tasks that create the project's static files in wwwroot +#wwwroot/ + +# Visual Studio 2017 auto generated files +Generated\ Files/ + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +# NUnit +*.VisualState.xml +TestResult.xml +nunit-*.xml + +# Build Results of an ATL Project +[Dd]ebugPS/ +[Rr]eleasePS/ +dlldata.c + +# Benchmark Results +BenchmarkDotNet.Artifacts/ + +# .NET Core +project.lock.json +project.fragment.lock.json +artifacts/ + +# ASP.NET Scaffolding +ScaffoldingReadMe.txt + +# StyleCop +StyleCopReport.xml + +# Files built by Visual Studio +*_i.c +*_p.c +*_h.h +*.ilk +*.meta +*.obj +*.iobj +*.pch +*.pdb +*.ipdb +*.pgc +*.pgd +*.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*_wpftmp.csproj +*.log +*.tlog +*.vspscc +*.vssscc +.builds +*.pidb +*.svclog +*.scc + +# Chutzpah Test files +_Chutzpah* + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opendb +*.opensdf +*.sdf +*.cachefile +*.VC.db +*.VC.VC.opendb + +# Visual Studio profiler +*.psess +*.vsp +*.vspx +*.sap + +# Visual Studio Trace Files +*.e2e + +# TFS 2012 Local Workspace +$tf/ + +# Guidance Automation Toolkit +*.gpState + +# ReSharper is a .NET coding add-in +_ReSharper*/ +*.[Rr]e[Ss]harper +*.DotSettings.user + +# TeamCity is a build add-in +_TeamCity* + +# DotCover is a Code Coverage Tool +*.dotCover + +# AxoCover is a Code Coverage Tool +.axoCover/* +!.axoCover/settings.json + +# Coverlet is a free, cross platform Code Coverage Tool +coverage*.json +coverage*.xml +coverage*.info + +# Visual Studio code coverage results +*.coverage +*.coveragexml + +# NCrunch +_NCrunch_* +.*crunch*.local.xml +nCrunchTemp_* + +# MightyMoose +*.mm.* +AutoTest.Net/ + +# Web workbench (sass) +.sass-cache/ + +# Installshield output folder +[Ee]xpress/ + +# DocProject is a documentation generator add-in +DocProject/buildhelp/ +DocProject/Help/*.HxT +DocProject/Help/*.HxC +DocProject/Help/*.hhc +DocProject/Help/*.hhk +DocProject/Help/*.hhp +DocProject/Help/Html2 +DocProject/Help/html + +# Click-Once directory +publish/ + +# Publish Web Output +*.[Pp]ublish.xml +*.azurePubxml +# Note: Comment the next line if you want to checkin your web deploy settings, +# but database connection strings (with potential passwords) will be unencrypted +*.pubxml +*.publishproj + +# Microsoft Azure Web App publish settings. Comment the next line if you want to +# checkin your Azure Web App publish settings, but sensitive information contained +# in these scripts will be unencrypted +PublishScripts/ + +# NuGet Packages +*.nupkg +# NuGet Symbol Packages +*.snupkg +# The packages folder can be ignored because of Package Restore +**/[Pp]ackages/* +# except build/, which is used as an MSBuild target. +!**/[Pp]ackages/build/ +# Uncomment if necessary however generally it will be regenerated when needed +#!**/[Pp]ackages/repositories.config +# NuGet v3's project.json files produces more ignorable files +*.nuget.props +*.nuget.targets + +# Microsoft Azure Build Output +csx/ +*.build.csdef + +# Microsoft Azure Emulator +ecf/ +rcf/ + +# Windows Store app package directories and files +AppPackages/ +BundleArtifacts/ +Package.StoreAssociation.xml +_pkginfo.txt +*.appx +*.appxbundle +*.appxupload + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!?*.[Cc]ache/ + +# Others +ClientBin/ +~$* +*~ +*.dbmdl +*.dbproj.schemaview +*.jfm +*.pfx +*.publishsettings +orleans.codegen.cs + +# Including strong name files can present a security risk +# (https://github.com/github/gitignore/pull/2483#issue-259490424) +#*.snk + +# Since there are multiple workflows, uncomment next line to ignore bower_components +# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) +#bower_components/ + +# RIA/Silverlight projects +Generated_Code/ + +# Backup & report files from converting an old project file +# to a newer Visual Studio version. Backup files are not needed, +# because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML +UpgradeLog*.htm +ServiceFabricBackup/ +*.rptproj.bak + +# SQL Server files +*.mdf +*.ldf +*.ndf + +# Business Intelligence projects +*.rdl.data +*.bim.layout +*.bim_*.settings +*.rptproj.rsuser +*- [Bb]ackup.rdl +*- [Bb]ackup ([0-9]).rdl +*- [Bb]ackup ([0-9][0-9]).rdl + +# Microsoft Fakes +FakesAssemblies/ + +# GhostDoc plugin setting file +*.GhostDoc.xml + +# Node.js Tools for Visual Studio +.ntvs_analysis.dat +node_modules/ + +# Visual Studio 6 build log +*.plg + +# Visual Studio 6 workspace options file +*.opt + +# Visual Studio 6 auto-generated workspace file (contains which files were open etc.) +*.vbw + +# Visual Studio 6 auto-generated project file (contains which files were open etc.) +*.vbp + +# Visual Studio 6 workspace and project file (working project files containing files to include in project) +*.dsw +*.dsp + +# Visual Studio 6 technical files +*.ncb +*.aps + +# Visual Studio LightSwitch build output +**/*.HTMLClient/GeneratedArtifacts +**/*.DesktopClient/GeneratedArtifacts +**/*.DesktopClient/ModelManifest.xml +**/*.Server/GeneratedArtifacts +**/*.Server/ModelManifest.xml +_Pvt_Extensions + +# Paket dependency manager +.paket/paket.exe +paket-files/ + +# FAKE - F# Make +.fake/ + +# CodeRush personal settings +.cr/personal + +# Python Tools for Visual Studio (PTVS) +__pycache__/ +*.pyc + +# Cake - Uncomment if you are using it +# tools/** +# !tools/packages.config + +# Tabs Studio +*.tss + +# Telerik's JustMock configuration file +*.jmconfig + +# BizTalk build output +*.btp.cs +*.btm.cs +*.odx.cs +*.xsd.cs + +# OpenCover UI analysis results +OpenCover/ + +# Azure Stream Analytics local run output +ASALocalRun/ + +# MSBuild Binary and Structured Log +*.binlog + +# NVidia Nsight GPU debugger configuration file +*.nvuser + +# MFractors (Xamarin productivity tool) working folder +.mfractor/ + +# Local History for Visual Studio +.localhistory/ + +# Visual Studio History (VSHistory) files +.vshistory/ + +# BeatPulse healthcheck temp database +healthchecksdb + +# Backup folder for Package Reference Convert tool in Visual Studio 2017 +MigrationBackup/ + +# Ionide (cross platform F# VS Code tools) working folder +.ionide/ + +# Fody - auto-generated XML schema +FodyWeavers.xsd + +# VS Code files for those working on multiple tools +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +*.code-workspace + +# Local History for Visual Studio Code +.history/ + +# Windows Installer files from build outputs +*.cab +*.msi +*.msix +*.msm +*.msp + +# JetBrains Rider +*.sln.iml diff --git a/MandelbrotSet.sln b/MandelbrotSet.sln new file mode 100644 index 0000000..63769a7 --- /dev/null +++ b/MandelbrotSet.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.27004.2006 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MandelbrotSet", "MandelbrotSet\MandelbrotSet.csproj", "{FD750A95-E7F5-4FF5-9572-8AD93F2BAFE5}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {FD750A95-E7F5-4FF5-9572-8AD93F2BAFE5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {FD750A95-E7F5-4FF5-9572-8AD93F2BAFE5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {FD750A95-E7F5-4FF5-9572-8AD93F2BAFE5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {FD750A95-E7F5-4FF5-9572-8AD93F2BAFE5}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {848645FF-2F1C-41A2-835C-8B86C64E8DF6} + EndGlobalSection +EndGlobal diff --git a/MandelbrotSet/App.config b/MandelbrotSet/App.config new file mode 100644 index 0000000..731f6de --- /dev/null +++ b/MandelbrotSet/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/MandelbrotSet/MandelbrotDisplay.Designer.cs b/MandelbrotSet/MandelbrotDisplay.Designer.cs new file mode 100644 index 0000000..a2af394 --- /dev/null +++ b/MandelbrotSet/MandelbrotDisplay.Designer.cs @@ -0,0 +1,62 @@ +namespace MandelbrotSet +{ + partial class MandelbrotDisplay + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.pbxDisplay = new System.Windows.Forms.PictureBox(); + ((System.ComponentModel.ISupportInitialize)(this.pbxDisplay)).BeginInit(); + this.SuspendLayout(); + // + // pbxDisplay + // + this.pbxDisplay.Dock = System.Windows.Forms.DockStyle.Fill; + this.pbxDisplay.Location = new System.Drawing.Point(0, 0); + this.pbxDisplay.Name = "pbxDisplay"; + this.pbxDisplay.Size = new System.Drawing.Size(666, 504); + this.pbxDisplay.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; + this.pbxDisplay.TabIndex = 0; + this.pbxDisplay.TabStop = false; + // + // MandelbrotDisplay + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(666, 504); + this.Controls.Add(this.pbxDisplay); + this.Name = "MandelbrotDisplay"; + this.Text = "Mandelbrot Set"; + ((System.ComponentModel.ISupportInitialize)(this.pbxDisplay)).EndInit(); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.PictureBox pbxDisplay; + } +} \ No newline at end of file diff --git a/MandelbrotSet/MandelbrotDisplay.cs b/MandelbrotSet/MandelbrotDisplay.cs new file mode 100644 index 0000000..a66eb9e --- /dev/null +++ b/MandelbrotSet/MandelbrotDisplay.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace MandelbrotSet +{ + public partial class MandelbrotDisplay : Form + { + public MandelbrotDisplay(Image image) + { + InitializeComponent(); + pbxDisplay.Image = image; + } + } +} diff --git a/MandelbrotSet/MandelbrotDisplay.resx b/MandelbrotSet/MandelbrotDisplay.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/MandelbrotSet/MandelbrotDisplay.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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/MandelbrotSet/MandelbrotSet.csproj b/MandelbrotSet/MandelbrotSet.csproj new file mode 100644 index 0000000..7280847 --- /dev/null +++ b/MandelbrotSet/MandelbrotSet.csproj @@ -0,0 +1,67 @@ + + + + + Debug + AnyCPU + {FD750A95-E7F5-4FF5-9572-8AD93F2BAFE5} + Exe + MandelbrotSet + MandelbrotSet + v4.6.1 + 512 + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + Form + + + MandelbrotDisplay.cs + + + + + + + + + + + MandelbrotDisplay.cs + + + + \ No newline at end of file diff --git a/MandelbrotSet/Program.cs b/MandelbrotSet/Program.cs new file mode 100644 index 0000000..922d3ea --- /dev/null +++ b/MandelbrotSet/Program.cs @@ -0,0 +1,173 @@ +using System; +using System.Diagnostics; +using System.Drawing; +using System.IO; +using System.Numerics; +using System.Windows.Forms; + +namespace MandelbrotSet +{ + class Program + { + #region Params + private static int MaxIterations = 96; // int: Höhe des Ausgabebilds in Pixeln. Nicht größer als 20000 setzen! + private static int Height = 1000; // int: Höhe des Ausgabebilds in Pixeln. Nicht größer als 20000 setzen! + private static int Width;// int: Breite des Ausgabebilds in Pixeln. Nicht größer als 20000 setzen! + private static string Filename = "plot"; // Dateiname + private const double Xmin = -2.0; // double: Untere Grenze des Definitionsbereichs des Plots + private const double Xmax = 1.0; // double: Obere Grenze des Definitionsbereichs des Plots + private const double Ymin = -1.0; // double: Untere Grenze des Wertebereichs des Plots + private const double Ymax = 1.0; // double: Obere Grenze des Wertebereichs des Plots + private const double HueFactor = 360.0; + private const double Mathwidth = Xmax - Xmin; + private const double Mathheight = Ymax - Ymin; + private static Color Corecolor { get; } = Color.Black; + #endregion + + private static BigInteger _pixelsDrawn; + + private static Bitmap _map; + + static Program() + { + _pixelsDrawn = 0; + } + + static void Main(string[] args) + { + if (args.Length >= 1) + { + Filename = args[0]; + if (args.Length >= 2) + { + if (int.TryParse(args[1], out var newHeight)) + { + Height = newHeight; + Console.WriteLine($"Parameter Höhe wurde auf {Height} gesetzt!."); + } + else + { + Console.WriteLine($"\"{args[1]}\" ist keine gültige Höhenangabe!"); + Console.WriteLine($"Parameter Höhe wurde auf Standardwert ({Height}) zurückgesetzt!."); + } + + if (args.Length >= 3) + { + if (int.TryParse(args[2], out var newMaxIterations)) + { + MaxIterations = newMaxIterations; + Console.WriteLine($"Parameter Iterationen wurde auf {MaxIterations} gesetzt!."); + } + else + { + Console.WriteLine($"\"{args[2]}\" ist keine gültige Iterationsangabe!"); + Console.WriteLine($"Parameter Iterationen wurde auf Standardwert ({MaxIterations}) zurückgesetzt!."); + } + } + } + } + Filename = $"{Filename}-{Height}px-{MaxIterations}it.bmp"; + Console.WriteLine($"Parameter Dateiname wurde auf \"{Filename}\" gesetzt!."); + Width = Height * 3 / 2; + try + { + _map = new Bitmap(Width, Height); + } + catch (Exception e) + { + Console.WriteLine("Bitmap kann nicht erstellt werden: " + e.Message); + return; + } + Stopwatch watch; + Console.WriteLine("Beginning Task...\n├─── Drawing Mandelbrot..."); + watch = Stopwatch.StartNew(); + + DrawMandelbrot(); + + Console.WriteLine($"│ └─── Mandelbrot drawn!\nDEBUG: { _pixelsDrawn.ToString()} pixels were drawn.\nSuccessfully rendered in {((double)watch.ElapsedMilliseconds / 1000.0).ToString()} seconds!\n├─── Saving bitmap..."); + watch = Stopwatch.StartNew(); + _map.Save(Filename); + Console.WriteLine($"│ ├─── Saved as \"{Filename}\"!\n│ Successfully saved in {((double)watch.ElapsedMilliseconds / 1000.0).ToString()} seconds!\nFinished Task!"); + Process.Start(Filename); + } + + private static int Constrain(int value, int min, int max) => value < min ? min : (value > max ? max : value); + + private static Color ColorFromHue(double hue) + { + double r, g, b, x; + int R, G, B; + + hue %= 360.0; + x = 1.0 - Math.Abs(hue / 60.0 % 2.0 - 1); + #region COLOR MODE + + if (hue < 60.0) + { + r = 1.0; g = x; b = 0.0; + } + else if (hue < 120.0) + { + r = x; g = 1.0; b = 0.0; + } + else if (hue < 180.0) + { + r = 0.0; g = 1.0; b = x; + } + else if (hue < 240.0) + { + r = 0.0; g = x; b = 1.0; + } + else if (hue < 300.0) + { + r = x; g = 0.0; b = 1.0; + } + else + { + r = 1.0; g = 0.0; b = x; + } + #endregion + R = Constrain((int)Math.Round(r * 255), 0, 255); + G = Constrain((int)Math.Round(g * 255), 0, 255); + B = Constrain((int)Math.Round(b * 255), 0, 255); + return Color.FromArgb(R, G, B); + } + + static double XtoMath(int xb) => Xmin + xb * Mathwidth / Width; + static double YtoMath(int yb) => Ymax - yb * Mathheight / Height; + + private static void DrawMandelbrot() + { + int y, x, iterations; + double xd, yd; + + for (y = 0; y < Height; y++) + { + if (y % 100 == 99) Console.WriteLine($"│ ├─── Progress: {(double)(y + 1) * 100.0 / (double)Height}%"); + yd = YtoMath(y); + for (x = 0; x < Width; x++) + { + xd = XtoMath(x); + iterations = MandelbrotIterations(new Complex(xd, yd), Complex.Zero); + if (iterations == -1) + { + _map.SetPixel(x, y, Corecolor); + _pixelsDrawn++; + continue; + } + _map.SetPixel(x, y, ColorFromHue(((double)iterations / (double)MaxIterations) * HueFactor)); + _pixelsDrawn++; + } + } + } + + private static Complex NextItem(Complex point, Complex z) => new Complex(z.Real * z.Real - z.Imaginary * z.Imaginary + point.Real, 2.0 * z.Real * z.Imaginary + point.Imaginary); + + private static int MandelbrotIterations(Complex point, Complex z, int depth = 0) + { + if (depth > MaxIterations) return -1; + if (z.Magnitude >= 2.0) return depth; + return MandelbrotIterations(point, NextItem(point, z), depth + 1); + } + } +} diff --git a/MandelbrotSet/Properties/AssemblyInfo.cs b/MandelbrotSet/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..f66582b --- /dev/null +++ b/MandelbrotSet/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +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("MandelbrotSet")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("MandelbrotSet")] +[assembly: AssemblyCopyright("Copyright © 2017")] +[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("fd750a95-e7f5-4ff5-9572-8ad93f2bafe5")] + +// 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, +// übernehmen, indem Sie "*" eingeben: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/MandelbrotSet/packages.config b/MandelbrotSet/packages.config new file mode 100644 index 0000000..082e1f4 --- /dev/null +++ b/MandelbrotSet/packages.config @@ -0,0 +1,4 @@ + + + + \ No newline at end of file