Initialize

This commit is contained in:
Eugen Höglinger 2020-11-26 12:38:51 +01:00
commit c4c52cee9d
48 changed files with 1191 additions and 0 deletions

BIN
.vs/ReadFromExcel1/v15/.suo Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
.vs/ReadFromExcel1/v16/.suo Normal file

Binary file not shown.

31
ReadFromExcel1.sln Normal file
View File

@ -0,0 +1,31 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.30711.63
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReadFromExcel1", "ReadFromExcel1\ReadFromExcel1.csproj", "{131BEAD3-0B4A-4BA5-8126-0660CFF50CC2}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{21F5A819-FF8D-4CDD-B501-15092D3DCBBF}"
ProjectSection(SolutionItems) = preProject
ReadFromExcel1\App.config = ReadFromExcel1\App.config
ReadFromExcel1\Properties\Resources.resx = ReadFromExcel1\Properties\Resources.resx
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{131BEAD3-0B4A-4BA5-8126-0660CFF50CC2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{131BEAD3-0B4A-4BA5-8126-0660CFF50CC2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{131BEAD3-0B4A-4BA5-8126-0660CFF50CC2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{131BEAD3-0B4A-4BA5-8126-0660CFF50CC2}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {B0E148B0-CA63-434D-BACB-7DE9606A56A8}
EndGlobalSection
EndGlobal

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/>
</startup>
</configuration>

53
ReadFromExcel1/Excel.cs Normal file
View File

@ -0,0 +1,53 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.IO;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using OfficeOpenXml;
namespace ReadFromExcel1
{
class Excel
{
public Excel()
{
}
public string[] ParseExcelData(string excelPath)
{
string[] sheetMetalValues = new string[5];
try
{
var fi = new FileInfo(excelPath);
using (var p = new ExcelPackage(fi))
{
//Get the Worksheet created in the previous codesample.
var ws = p.Workbook.Worksheets["Werte"];
for (int i = 1; i <= ws.Dimension.End.Row; i++)
{
if (ws.Cells[i, 1].Value != null)
{
if (ws.Cells[i, 1].Value.ToString() == "2")
{
sheetMetalValues[0] = ws.Cells[i, 1].Value.ToString();
sheetMetalValues[1] = ws.Cells[i, 2].Value.ToString();
sheetMetalValues[2] = ws.Cells[i, 3].Value.ToString();
sheetMetalValues[3] = ws.Cells[i, 4].Value.ToString();
sheetMetalValues[4] = ws.Cells[i, 5].Value.ToString();
}
}
}
}
}
catch (Exception)
{
}
return sheetMetalValues;
}
}
}

74
ReadFromExcel1/Form1.Designer.cs generated Normal file
View File

@ -0,0 +1,74 @@
namespace ReadFromExcel1
{
partial class Form1
{
/// <summary>
/// Erforderliche Designervariable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Verwendete Ressourcen bereinigen.
/// </summary>
/// <param name="disposing">True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Vom Windows Form-Designer generierter Code
/// <summary>
/// Erforderliche Methode für die Designerunterstützung.
/// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
/// </summary>
private void InitializeComponent()
{
this.buttonReadExcel = new System.Windows.Forms.Button();
this.labelValues = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// buttonReadExcel
//
this.buttonReadExcel.Location = new System.Drawing.Point(12, 134);
this.buttonReadExcel.Name = "buttonReadExcel";
this.buttonReadExcel.Size = new System.Drawing.Size(518, 23);
this.buttonReadExcel.TabIndex = 0;
this.buttonReadExcel.Text = "Excel auslesen";
this.buttonReadExcel.UseVisualStyleBackColor = true;
this.buttonReadExcel.Click += new System.EventHandler(this.buttonReadExcel_Click);
//
// labelValues
//
this.labelValues.AutoSize = true;
this.labelValues.Location = new System.Drawing.Point(13, 13);
this.labelValues.Name = "labelValues";
this.labelValues.Size = new System.Drawing.Size(16, 13);
this.labelValues.TabIndex = 1;
this.labelValues.Text = "...";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(542, 169);
this.Controls.Add(this.labelValues);
this.Controls.Add(this.buttonReadExcel);
this.Name = "Form1";
this.Text = "Read from Excel - EPPlus Library";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button buttonReadExcel;
private System.Windows.Forms.Label labelValues;
}
}

124
ReadFromExcel1/Form1.cs Normal file
View File

@ -0,0 +1,124 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace ReadFromExcel1
{
public partial class Form1 : Form
{
#region Version und Copyright
// Version und Copyright
string programName = Path.GetFileNameWithoutExtension(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase); //Den Programmnamen auslesen
string programVersion = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString();
static object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyCopyrightAttribute), false);
string copyright = GenerateCopyright();
string icon = Application.StartupPath + "\\Info.bmp";
//Assembly Datum und Zeit
static DateTime value = AssemblyDateTime();
string date = value.ToShortDateString();
string time = value.ToLongTimeString();
private static DateTime AssemblyDateTime()
{
var version = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version;
var buildDateTime = new DateTime(2000, 1, 1).Add(new TimeSpan(TimeSpan.TicksPerDay * version.Build + TimeSpan.TicksPerSecond * 2 * version.Revision));
//Tage seit dem 1. Januar 2000 und Sekunden seit Mitternacht, (multiplizier mit 2 ergibt das Original)
return buildDateTime;
}
private static string CurrentYear()
{
DateTime dtn = DateTime.Now;
return dtn.Year.ToString();
}
private static string StartYear()
{
//string startYear = ((AssemblyCopyrightAttribute)attributes[0]).Copyright;
//return startYear.Remove(0, startYear.LastIndexOf(" ") + 1);
string startYear = "";
if (((AssemblyCopyrightAttribute)attributes[0]).Copyright.Contains("Copyright © "))
{
startYear = ((AssemblyCopyrightAttribute)attributes[0]).Copyright.Replace("Copyright © ", "");
while (startYear.StartsWith(" "))
{
startYear = startYear.Remove(0, 1);
}
startYear = startYear.Remove(startYear.IndexOf(" "));
return startYear;
}
else
{
DateTime dtn = DateTime.Now;
return dtn.Year.ToString();
}
}
private static string GenerateCopyright()
{
string startYear = StartYear();
string currentYear = CurrentYear();
if (startYear == currentYear)
{
return ((AssemblyCopyrightAttribute)attributes[0]).Copyright;
}
else
{
//return String.Concat(((AssemblyCopyrightAttribute)attributes[0]).Copyright, "-", currentYear);
return ((AssemblyCopyrightAttribute)attributes[0]).Copyright.Replace(startYear, String.Concat(startYear, "-", currentYear));
}
}
#endregion
#region Programm-Info
/// <summary>
/// Contains the name of the program file
/// </summary>
public static string ProgramName { set; get; }
/// <summary>
/// Contains the version of the program file
/// </summary>
public static string ProgramVersion { set; get; }
/// <summary>
/// Contains the copyright notice
/// </summary>
public static string Copyright { set; get; }
private void SetProgramInfo()
{
//Name, Version und Copyright setzen
ProgramName = programName;
ProgramVersion = programVersion;
Copyright = copyright;
}
#endregion
public Form1()
{
SetProgramInfo(); //Name, Version und Copyright setzen
InitializeComponent();
}
private void buttonReadExcel_Click(object sender, EventArgs e)
{
//string excelPath = @"M:\ug\NX12_NXTC\global\06_ENGEL_NX_CUSTOMIZING\Blech\Blechstaerke_Relief.xls";
string excelPath = @"M:\ug\NX12_NXTC\global\06_ENGEL_NX_CUSTOMIZING\Blech\Blechstaerke_Relief_Eugen.xlsx";
string[] sheetMetalValues = new string[5];
var excel = new Excel();
sheetMetalValues = excel.ParseExcelData(excelPath);
labelValues.Text = String.Concat("Datei: ", excelPath, "\nÜbergebene Materialdicke: 2\n\nBlechstärke: ", sheetMetalValues[0], "\nReliefbreite: ", sheetMetalValues[1], "\nRelieftiefe: ", sheetMetalValues[2], "\nDm Ausschnitt: ", sheetMetalValues[3], "\nOffset: ", sheetMetalValues[4]);
}
}
}

120
ReadFromExcel1/Form1.resx Normal file
View File

@ -0,0 +1,120 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>

22
ReadFromExcel1/Program.cs Normal file
View File

@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace ReadFromExcel1
{
static class Program
{
/// <summary>
/// Der Haupteinstiegspunkt für die Anwendung.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}

View File

@ -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("ReadFromExcel1")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("ReadFromExcel1")]
[assembly: AssemblyCopyright("Copyright © 2019 by Eugen Höglinger")]
[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("131bead3-0b4a-4ba5-8126-0660cff50cc2")]
// 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.*")]
[assembly: AssemblyFileVersion("1.0.0.0")]

View File

@ -0,0 +1,63 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 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.
// </auto-generated>
//------------------------------------------------------------------------------
namespace ReadFromExcel1.Properties {
using System;
/// <summary>
/// Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw.
/// </summary>
// 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", "16.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() {
}
/// <summary>
/// Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird.
/// </summary>
[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("ReadFromExcel1.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle
/// Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
}
}

View File

@ -0,0 +1,120 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>

View File

@ -0,0 +1,26 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 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.
// </auto-generated>
//------------------------------------------------------------------------------
namespace ReadFromExcel1.Properties {
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.8.1.0")]
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
public static Settings Default {
get {
return defaultInstance;
}
}
}
}

View File

@ -0,0 +1,7 @@
<?xml version='1.0' encoding='utf-8'?>
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)">
<Profiles>
<Profile Name="(Default)" />
</Profiles>
<Settings />
</SettingsFile>

View File

@ -0,0 +1,114 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{131BEAD3-0B4A-4BA5-8126-0660CFF50CC2}</ProjectGuid>
<OutputType>WinExe</OutputType>
<RootNamespace>ReadFromExcel1</RootNamespace>
<AssemblyName>ReadFromExcel1</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>false</Deterministic>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="EPPlus, Version=4.5.3.1, Culture=neutral, PublicKeyToken=ea159fdaa78159a1, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>bin\Debug\EPPlus.dll</HintPath>
</Reference>
<Reference Include="PresentationCore" />
<Reference Include="System" />
<Reference Include="System.configuration" />
<Reference Include="System.Core" />
<Reference Include="System.Security" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Deployment" />
<Reference Include="System.Drawing" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Excel.cs" />
<Compile Include="Form1.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="Form1.Designer.cs">
<DependentUpon>Form1.cs</DependentUpon>
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<EmbeddedResource Include="Form1.resx">
<DependentUpon>Form1.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
<SubType>Designer</SubType>
</EmbeddedResource>
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
<DesignTime>True</DesignTime>
</Compile>
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="EPPlus">
<Version>4.5.3.1</Version>
</PackageReference>
<PackageReference Include="EpplusExcel">
<Version>1.0.0</Version>
</PackageReference>
</ItemGroup>
<ItemGroup>
<COMReference Include="VBIDE">
<Guid>{0002E157-0000-0000-C000-000000000046}</Guid>
<VersionMajor>5</VersionMajor>
<VersionMinor>3</VersionMinor>
<Lcid>0</Lcid>
<WrapperTool>primary</WrapperTool>
<Isolated>False</Isolated>
<EmbedInteropTypes>True</EmbedInteropTypes>
</COMReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/>
</startup>
</configuration>

Binary file not shown.

View File

@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.0", FrameworkDisplayName = ".NET Framework 4")]

View File

@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.6.1", FrameworkDisplayName = ".NET Framework 4.6.1")]

Binary file not shown.

View File

@ -0,0 +1 @@
968e6c6e806bbdbf2c003b7fa30e203ec09506e9

View File

@ -0,0 +1,28 @@
H:\Programmieren\Visual Studio 2017\Projekte\ReadFromExcel1\ReadFromExcel1\obj\Debug\ReadFromExcel1.Properties.Resources.resources
H:\Programmieren\Visual Studio 2017\Projekte\ReadFromExcel1\ReadFromExcel1\obj\Debug\ReadFromExcel1.csproj.GenerateResource.cache
H:\Programmieren\Visual Studio 2017\Projekte\ReadFromExcel1\ReadFromExcel1\obj\Debug\ReadFromExcel1.csproj.CoreCompileInputs.cache
H:\Programmieren\Visual Studio 2017\Projekte\ReadFromExcel1\ReadFromExcel1\obj\Debug\ReadFromExcel1.csprojAssemblyReference.cache
H:\Programmieren\Visual Studio 2017\Projekte\ReadFromExcel1\ReadFromExcel1\bin\Debug\ReadFromExcel1.exe.config
H:\Programmieren\Visual Studio 2017\Projekte\ReadFromExcel1\ReadFromExcel1\bin\Debug\ReadFromExcel1.exe
H:\Programmieren\Visual Studio 2017\Projekte\ReadFromExcel1\ReadFromExcel1\bin\Debug\ReadFromExcel1.pdb
H:\Programmieren\Visual Studio 2017\Projekte\ReadFromExcel1\ReadFromExcel1\bin\Debug\EPPlus.dll
H:\Programmieren\Visual Studio 2017\Projekte\ReadFromExcel1\ReadFromExcel1\bin\Debug\EPPlus_ExcelDemo.vshost.exe
H:\Programmieren\Visual Studio 2017\Projekte\ReadFromExcel1\ReadFromExcel1\bin\Debug\Spire.License.dll
H:\Programmieren\Visual Studio 2017\Projekte\ReadFromExcel1\ReadFromExcel1\bin\Debug\Spire.Pdf.dll
H:\Programmieren\Visual Studio 2017\Projekte\ReadFromExcel1\ReadFromExcel1\bin\Debug\Spire.XLS.dll
H:\Programmieren\Visual Studio 2017\Projekte\ReadFromExcel1\ReadFromExcel1\obj\Debug\ReadFromExcel1.Form1.resources
H:\Programmieren\Visual Studio 2017\Projekte\ReadFromExcel1\ReadFromExcel1\obj\Debug\ReadFromExcel1.csproj.CopyComplete
H:\Programmieren\Visual Studio 2017\Projekte\ReadFromExcel1\ReadFromExcel1\obj\Debug\ReadFromExcel1.exe
H:\Programmieren\Visual Studio 2017\Projekte\ReadFromExcel1\ReadFromExcel1\obj\Debug\ReadFromExcel1.pdb
H:\Programmieren\Git-Repository\VisualStudio\2017\_PROJEKTE\ReadFromExcel1.git\ReadFromExcel1\obj\Debug\ReadFromExcel1.csprojAssemblyReference.cache
H:\Programmieren\Git-Repository\VisualStudio\2017\_PROJEKTE\ReadFromExcel1.git\ReadFromExcel1\obj\Debug\ReadFromExcel1.Form1.resources
H:\Programmieren\Git-Repository\VisualStudio\2017\_PROJEKTE\ReadFromExcel1.git\ReadFromExcel1\obj\Debug\ReadFromExcel1.Properties.Resources.resources
H:\Programmieren\Git-Repository\VisualStudio\2017\_PROJEKTE\ReadFromExcel1.git\ReadFromExcel1\obj\Debug\ReadFromExcel1.csproj.GenerateResource.cache
H:\Programmieren\Git-Repository\VisualStudio\2017\_PROJEKTE\ReadFromExcel1.git\ReadFromExcel1\obj\Debug\ReadFromExcel1.csproj.CoreCompileInputs.cache
H:\Programmieren\Git-Repository\VisualStudio\2017\_PROJEKTE\ReadFromExcel1.git\ReadFromExcel1\obj\Debug\ReadFromExcel1.exe
H:\Programmieren\Git-Repository\VisualStudio\2017\_PROJEKTE\ReadFromExcel1.git\ReadFromExcel1\obj\Debug\ReadFromExcel1.pdb
H:\Programmieren\Git-Repository\VisualStudio\2017\_PROJEKTE\ReadFromExcel1.git\ReadFromExcel1\obj\Debug\ReadFromExcel1.csproj.ResolveComReference.cache
H:\Programmieren\Git-Repository\VisualStudio\2017\_PROJEKTE\ReadFromExcel1.git\ReadFromExcel1\bin\Debug\ReadFromExcel1.exe.config
H:\Programmieren\Git-Repository\VisualStudio\2017\_PROJEKTE\ReadFromExcel1.git\ReadFromExcel1\bin\Debug\ReadFromExcel1.exe
H:\Programmieren\Git-Repository\VisualStudio\2017\_PROJEKTE\ReadFromExcel1.git\ReadFromExcel1\bin\Debug\ReadFromExcel1.pdb
H:\Programmieren\Git-Repository\VisualStudio\2017\_PROJEKTE\ReadFromExcel1.git\ReadFromExcel1\obj\Debug\ReadFromExcel1.csproj.CopyComplete

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,5 @@
{
"version": 1,
"dgSpecHash": "o+yxayEghfcK+33ohHiNSNlyQT8A372dsCPNiMmgmFeua3Vo4miTDGqOkB+BkoFDiO7nVcOtzECSzF5T/BIavQ==",
"success": true
}

View File

@ -0,0 +1,61 @@
{
"format": 1,
"restore": {
"H:\\Programmieren\\Git-Repository\\VisualStudio\\2017\\_PROJEKTE\\ReadFromExcel1.git\\ReadFromExcel1\\ReadFromExcel1.csproj": {}
},
"projects": {
"H:\\Programmieren\\Git-Repository\\VisualStudio\\2017\\_PROJEKTE\\ReadFromExcel1.git\\ReadFromExcel1\\ReadFromExcel1.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "H:\\Programmieren\\Git-Repository\\VisualStudio\\2017\\_PROJEKTE\\ReadFromExcel1.git\\ReadFromExcel1\\ReadFromExcel1.csproj",
"projectName": "ReadFromExcel1",
"projectPath": "H:\\Programmieren\\Git-Repository\\VisualStudio\\2017\\_PROJEKTE\\ReadFromExcel1.git\\ReadFromExcel1\\ReadFromExcel1.csproj",
"packagesPath": "C:\\Users\\001142709\\.nuget\\packages\\",
"outputPath": "H:\\Programmieren\\Git-Repository\\VisualStudio\\2017\\_PROJEKTE\\ReadFromExcel1.git\\ReadFromExcel1\\obj\\",
"projectStyle": "PackageReference",
"skipContentFileWrite": true,
"configFilePaths": [
"C:\\Users\\001142709\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net461"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net461": {
"projectReferences": {}
}
}
},
"frameworks": {
"net461": {
"dependencies": {
"EPPlus": {
"target": "Package",
"version": "[4.5.3.1, )"
},
"EpplusExcel": {
"target": "Package",
"version": "[1.0.0, )"
}
}
}
},
"runtimes": {
"win": {
"#import": []
},
"win-x64": {
"#import": []
},
"win-x86": {
"#import": []
}
}
}
}
}

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\001142709\.nuget\packages\</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.8.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="$([MSBuild]::EnsureTrailingSlash($(NuGetPackageFolders)))" />
</ItemGroup>
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
</Project>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
</Project>

View File

@ -0,0 +1,251 @@
{
"version": 3,
"targets": {
".NETFramework,Version=v4.6.1": {
"EPPlus/4.5.3.1": {
"type": "package",
"frameworkAssemblies": [
"PresentationCore",
"System",
"System.Core",
"System.Data",
"System.Drawing",
"System.Security",
"System.Xml",
"System.configuration"
],
"compile": {
"lib/net40/EPPlus.dll": {}
},
"runtime": {
"lib/net40/EPPlus.dll": {}
}
},
"EpplusExcel/1.0.0": {
"type": "package",
"compile": {
"lib/net40/EPPlus_ExcelDemo.vshost.exe": {},
"lib/net40/Spire.License.dll": {},
"lib/net40/Spire.Pdf.dll": {},
"lib/net40/Spire.XLS.dll": {}
},
"runtime": {
"lib/net40/EPPlus_ExcelDemo.vshost.exe": {},
"lib/net40/Spire.License.dll": {},
"lib/net40/Spire.Pdf.dll": {},
"lib/net40/Spire.XLS.dll": {}
}
}
},
".NETFramework,Version=v4.6.1/win": {
"EPPlus/4.5.3.1": {
"type": "package",
"frameworkAssemblies": [
"PresentationCore",
"System",
"System.Core",
"System.Data",
"System.Drawing",
"System.Security",
"System.Xml",
"System.configuration"
],
"compile": {
"lib/net40/EPPlus.dll": {}
},
"runtime": {
"lib/net40/EPPlus.dll": {}
}
},
"EpplusExcel/1.0.0": {
"type": "package",
"compile": {
"lib/net40/EPPlus_ExcelDemo.vshost.exe": {},
"lib/net40/Spire.License.dll": {},
"lib/net40/Spire.Pdf.dll": {},
"lib/net40/Spire.XLS.dll": {}
},
"runtime": {
"lib/net40/EPPlus_ExcelDemo.vshost.exe": {},
"lib/net40/Spire.License.dll": {},
"lib/net40/Spire.Pdf.dll": {},
"lib/net40/Spire.XLS.dll": {}
}
}
},
".NETFramework,Version=v4.6.1/win-x64": {
"EPPlus/4.5.3.1": {
"type": "package",
"frameworkAssemblies": [
"PresentationCore",
"System",
"System.Core",
"System.Data",
"System.Drawing",
"System.Security",
"System.Xml",
"System.configuration"
],
"compile": {
"lib/net40/EPPlus.dll": {}
},
"runtime": {
"lib/net40/EPPlus.dll": {}
}
},
"EpplusExcel/1.0.0": {
"type": "package",
"compile": {
"lib/net40/EPPlus_ExcelDemo.vshost.exe": {},
"lib/net40/Spire.License.dll": {},
"lib/net40/Spire.Pdf.dll": {},
"lib/net40/Spire.XLS.dll": {}
},
"runtime": {
"lib/net40/EPPlus_ExcelDemo.vshost.exe": {},
"lib/net40/Spire.License.dll": {},
"lib/net40/Spire.Pdf.dll": {},
"lib/net40/Spire.XLS.dll": {}
}
}
},
".NETFramework,Version=v4.6.1/win-x86": {
"EPPlus/4.5.3.1": {
"type": "package",
"frameworkAssemblies": [
"PresentationCore",
"System",
"System.Core",
"System.Data",
"System.Drawing",
"System.Security",
"System.Xml",
"System.configuration"
],
"compile": {
"lib/net40/EPPlus.dll": {}
},
"runtime": {
"lib/net40/EPPlus.dll": {}
}
},
"EpplusExcel/1.0.0": {
"type": "package",
"compile": {
"lib/net40/EPPlus_ExcelDemo.vshost.exe": {},
"lib/net40/Spire.License.dll": {},
"lib/net40/Spire.Pdf.dll": {},
"lib/net40/Spire.XLS.dll": {}
},
"runtime": {
"lib/net40/EPPlus_ExcelDemo.vshost.exe": {},
"lib/net40/Spire.License.dll": {},
"lib/net40/Spire.Pdf.dll": {},
"lib/net40/Spire.XLS.dll": {}
}
}
}
},
"libraries": {
"EPPlus/4.5.3.1": {
"sha512": "2BFgconr3ZxC95P2KkEzcagdlGTBC14BD/39oy7GDHuJMqrJl3nvrHEegNTdIvlOG46T+AaI416zJQ5qBIzi8g==",
"type": "package",
"path": "epplus/4.5.3.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"epplus.4.5.3.1.nupkg.sha512",
"epplus.nuspec",
"lib/net35/EPPlus.dll",
"lib/net35/EPPlus.xml",
"lib/net40/EPPlus.dll",
"lib/net40/EPPlus.xml",
"lib/netstandard2.0/EPPlus.dll",
"lib/netstandard2.0/EPPlus.xml",
"readme.txt"
]
},
"EpplusExcel/1.0.0": {
"sha512": "0dP0gfNlZaMXZKpnrWX6aVZDofZflUDswpe9pl/D06qz2K4Snc2cQzEnzfOv/SLlSH2Rxhxj4KBTvX8GoCpkjg==",
"type": "package",
"path": "epplusexcel/1.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"epplusexcel.1.0.0.nupkg.sha512",
"epplusexcel.nuspec",
"lib/net40/EPPlus_ExcelDemo.exe.config",
"lib/net40/EPPlus_ExcelDemo.vshost.exe",
"lib/net40/EPPlus_ExcelDemo.vshost.exe.config",
"lib/net40/EPPlus_ExcelDemo.vshost.exe.manifest",
"lib/net40/Spire.License.dll",
"lib/net40/Spire.Pdf.dll",
"lib/net40/Spire.Pdf.xml",
"lib/net40/Spire.XLS.dll",
"lib/net40/Spire.XLS.xml"
]
}
},
"projectFileDependencyGroups": {
".NETFramework,Version=v4.6.1": [
"EPPlus >= 4.5.3.1",
"EpplusExcel >= 1.0.0"
]
},
"packageFolders": {
"C:\\Users\\001142709\\.nuget\\packages\\": {}
},
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "H:\\Programmieren\\Git-Repository\\VisualStudio\\2017\\_PROJEKTE\\ReadFromExcel1.git\\ReadFromExcel1\\ReadFromExcel1.csproj",
"projectName": "ReadFromExcel1",
"projectPath": "H:\\Programmieren\\Git-Repository\\VisualStudio\\2017\\_PROJEKTE\\ReadFromExcel1.git\\ReadFromExcel1\\ReadFromExcel1.csproj",
"packagesPath": "C:\\Users\\001142709\\.nuget\\packages\\",
"outputPath": "H:\\Programmieren\\Git-Repository\\VisualStudio\\2017\\_PROJEKTE\\ReadFromExcel1.git\\ReadFromExcel1\\obj\\",
"projectStyle": "PackageReference",
"skipContentFileWrite": true,
"configFilePaths": [
"C:\\Users\\001142709\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net461"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net461": {
"projectReferences": {}
}
}
},
"frameworks": {
"net461": {
"dependencies": {
"EPPlus": {
"target": "Package",
"version": "[4.5.3.1, )"
},
"EpplusExcel": {
"target": "Package",
"version": "[1.0.0, )"
}
}
}
},
"runtimes": {
"win": {
"#import": []
},
"win-x64": {
"#import": []
},
"win-x86": {
"#import": []
}
}
}
}

View File

@ -0,0 +1,11 @@
{
"version": 2,
"dgSpecHash": "0H8cU+dJi/MptgNdFect6ywUbYZbmf2f648piD/czTeVX68AZIMVEPmXtJtS17vgUywSc5rbxjPbR4gi9f/IPw==",
"success": true,
"projectFilePath": "H:\\Programmieren\\Git-Repository\\VisualStudio\\2017\\_PROJEKTE\\ReadFromExcel1.git\\ReadFromExcel1\\ReadFromExcel1.csproj",
"expectedPackageFiles": [
"C:\\Users\\001142709\\.nuget\\packages\\epplus\\4.5.3.1\\epplus.4.5.3.1.nupkg.sha512",
"C:\\Users\\001142709\\.nuget\\packages\\epplusexcel\\1.0.0\\epplusexcel.1.0.0.nupkg.sha512"
],
"logs": []
}