Das erste Tuerchen komplett man
This commit is contained in:
parent
3a26bd7c8a
commit
52eb95cf99
25
1/adventofcode1.sln
Normal file
25
1/adventofcode1.sln
Normal file
@ -0,0 +1,25 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 17
|
||||
VisualStudioVersion = 17.3.32929.385
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "adventofcode1", "adventofcode1\adventofcode1.vbproj", "{DFEEF23C-F3D5-4096-93B8-814DB01F157B}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{DFEEF23C-F3D5-4096-93B8-814DB01F157B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{DFEEF23C-F3D5-4096-93B8-814DB01F157B}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{DFEEF23C-F3D5-4096-93B8-814DB01F157B}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{DFEEF23C-F3D5-4096-93B8-814DB01F157B}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {5B268E13-16AC-4E2A-9C6F-F00B3FCFE1DE}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
29
1/adventofcode1/ApplicationEvents.vb
Normal file
29
1/adventofcode1/ApplicationEvents.vb
Normal file
@ -0,0 +1,29 @@
|
||||
Imports Microsoft.VisualBasic.ApplicationServices
|
||||
|
||||
Namespace My
|
||||
' The following events are available for MyApplication:
|
||||
' Startup: Raised when the application starts, before the startup form is created.
|
||||
' Shutdown: Raised after all application forms are closed. This event is not raised if the application terminates abnormally.
|
||||
' UnhandledException: Raised if the application encounters an unhandled exception.
|
||||
' StartupNextInstance: Raised when launching a single-instance application and the application is already active.
|
||||
' NetworkAvailabilityChanged: Raised when the network connection is connected or disconnected.
|
||||
|
||||
' **NEW** ApplyApplicationDefaults: Raised when the application queries default values to be set for the application.
|
||||
|
||||
' Example:
|
||||
' Private Sub MyApplication_ApplyApplicationDefaults(sender As Object, e As ApplyApplicationDefaultsEventArgs) Handles Me.ApplyApplicationDefaults
|
||||
'
|
||||
' ' Setting the application-wide default Font:
|
||||
' e.Font = New Font(FontFamily.GenericSansSerif, 12, FontStyle.Regular)
|
||||
'
|
||||
' ' Setting the HighDpiMode for the Application:
|
||||
' e.HighDpiMode = HighDpiMode.PerMonitorV2
|
||||
'
|
||||
' ' If a splash dialog is used, this sets the minimum display time:
|
||||
' e.MinimumSplashScreenDisplayTime = 4000
|
||||
' End Sub
|
||||
|
||||
Partial Friend Class MyApplication
|
||||
|
||||
End Class
|
||||
End Namespace
|
38
1/adventofcode1/Form1.Designer.vb
generated
Normal file
38
1/adventofcode1/Form1.Designer.vb
generated
Normal file
@ -0,0 +1,38 @@
|
||||
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>
|
||||
Partial Class Form1
|
||||
Inherits System.Windows.Forms.Form
|
||||
|
||||
'Form overrides dispose to clean up the component list.
|
||||
<System.Diagnostics.DebuggerNonUserCode()>
|
||||
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
|
||||
Try
|
||||
If disposing AndAlso components IsNot Nothing Then
|
||||
components.Dispose()
|
||||
End If
|
||||
Finally
|
||||
MyBase.Dispose(disposing)
|
||||
End Try
|
||||
End Sub
|
||||
|
||||
'Required by the Windows Form Designer
|
||||
Private components As System.ComponentModel.IContainer
|
||||
|
||||
'NOTE: The following procedure is required by the Windows Form Designer
|
||||
'It can be modified using the Windows Form Designer.
|
||||
'Do not modify it using the code editor.
|
||||
<System.Diagnostics.DebuggerStepThrough()>
|
||||
Private Sub InitializeComponent()
|
||||
Me.SuspendLayout()
|
||||
'
|
||||
'Form1
|
||||
'
|
||||
Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 15.0!)
|
||||
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||
Me.ClientSize = New System.Drawing.Size(800, 450)
|
||||
Me.Name = "Form1"
|
||||
Me.Text = "Form1"
|
||||
Me.ResumeLayout(False)
|
||||
|
||||
End Sub
|
||||
|
||||
End Class
|
60
1/adventofcode1/Form1.resx
Normal file
60
1/adventofcode1/Form1.resx
Normal file
@ -0,0 +1,60 @@
|
||||
<root>
|
||||
<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>
|
56
1/adventofcode1/Form1.vb
Normal file
56
1/adventofcode1/Form1.vb
Normal file
@ -0,0 +1,56 @@
|
||||
Public Class Form1
|
||||
Dim input As String = My.Computer.FileSystem.ReadAllText("./input.txt")
|
||||
|
||||
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
|
||||
Dim linesArr As String() = input.Split(Environment.NewLine)
|
||||
Dim tmpMarker As Integer = 0
|
||||
|
||||
Dim elves As New List(Of Integer)
|
||||
|
||||
For i As Integer = 0 To linesArr.Length - 1
|
||||
If linesArr(i) = "" Then
|
||||
Dim tmpSum As Integer = 0
|
||||
|
||||
For j As Integer = tmpMarker To i - 1
|
||||
'MsgBox("DEBUG: i=" + CStr(i) + ", j=" + CStr(j) + "; " + linesArr(j))
|
||||
tmpSum += Convert.ToInt32(linesArr(j))
|
||||
Next
|
||||
|
||||
elves.Add(tmpSum)
|
||||
tmpMarker = i + 1
|
||||
End If
|
||||
Next
|
||||
|
||||
MsgBox("Der krankste Huhn im Stall: " + CStr(Me.findMax(elves)))
|
||||
MsgBox("Summe der tollsten drei Hengste im Hanger: " + CStr(findTopThreeSum(elves)))
|
||||
End Sub
|
||||
|
||||
Public Function findMax(inputArr As List(Of Integer)) As Integer
|
||||
Dim out As Integer = 0
|
||||
|
||||
For i As Integer = 0 To inputArr.Count - 1
|
||||
If inputArr(i) > out Then out = inputArr(i)
|
||||
Next
|
||||
|
||||
Return out
|
||||
End Function
|
||||
|
||||
Public Function findTopThreeSum(inputArr As List(Of Integer)) As Integer
|
||||
Dim erster As Integer = 0
|
||||
Dim zweiter As Integer = 0
|
||||
Dim dritter As Integer = 0
|
||||
|
||||
|
||||
For i As Integer = 0 To inputArr.Count - 1
|
||||
If inputArr(i) > erster Then erster = inputArr(i)
|
||||
Next
|
||||
For i As Integer = 0 To inputArr.Count - 1
|
||||
If inputArr(i) > zweiter And inputArr(i) < erster Then zweiter = inputArr(i)
|
||||
Next
|
||||
For i As Integer = 0 To inputArr.Count - 1
|
||||
If inputArr(i) > dritter And inputArr(i) < zweiter Then dritter = inputArr(i)
|
||||
Next
|
||||
|
||||
Return erster + zweiter + dritter
|
||||
End Function
|
||||
End Class
|
37
1/adventofcode1/My Project/Application.Designer.vb
generated
Normal file
37
1/adventofcode1/My Project/Application.Designer.vb
generated
Normal file
@ -0,0 +1,37 @@
|
||||
'------------------------------------------------------------------------------
|
||||
' <auto-generated>
|
||||
' This code was generated by a tool.
|
||||
' Runtime Version:4.0.30319.42000
|
||||
'
|
||||
' Changes to this file may cause incorrect behavior and will be lost if
|
||||
' the code is regenerated.
|
||||
' </auto-generated>
|
||||
'------------------------------------------------------------------------------
|
||||
|
||||
Option Strict On
|
||||
Option Explicit On
|
||||
|
||||
Namespace My
|
||||
|
||||
'NOTE: This file is auto-generated; do not modify it directly. To make changes,
|
||||
' or if you encounter build errors in this file, go to the Project Designer
|
||||
' (go to Project Properties or double-click the My Project node in
|
||||
' Solution Explorer), and make changes on the Application tab.
|
||||
'
|
||||
Partial Friend Class MyApplication
|
||||
|
||||
<Global.System.Diagnostics.DebuggerStepThroughAttribute()>
|
||||
Public Sub New()
|
||||
MyBase.New(Global.Microsoft.VisualBasic.ApplicationServices.AuthenticationMode.Windows)
|
||||
Me.IsSingleInstance = False
|
||||
Me.EnableVisualStyles = True
|
||||
Me.SaveMySettingsOnExit = True
|
||||
Me.ShutDownStyle = Global.Microsoft.VisualBasic.ApplicationServices.ShutdownMode.AfterMainFormCloses
|
||||
End Sub
|
||||
|
||||
<Global.System.Diagnostics.DebuggerStepThroughAttribute()>
|
||||
Protected Overrides Sub OnCreateMainForm()
|
||||
Me.MainForm = Form1
|
||||
End Sub
|
||||
End Class
|
||||
End Namespace
|
10
1/adventofcode1/My Project/Application.myapp
Normal file
10
1/adventofcode1/My Project/Application.myapp
Normal file
@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<MyApplicationData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
||||
<MySubMain>true</MySubMain>
|
||||
<MainForm>Form1</MainForm>
|
||||
<SingleInstance>false</SingleInstance>
|
||||
<ShutdownMode>0</ShutdownMode>
|
||||
<EnableVisualStyles>true</EnableVisualStyles>
|
||||
<AuthenticationMode>0</AuthenticationMode>
|
||||
<SaveMySettingsOnExit>true</SaveMySettingsOnExit>
|
||||
</MyApplicationData>
|
32
1/adventofcode1/adventofcode1.vbproj
Normal file
32
1/adventofcode1/adventofcode1.vbproj
Normal file
@ -0,0 +1,32 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>WinExe</OutputType>
|
||||
<TargetFramework>net6.0-windows</TargetFramework>
|
||||
<StartupObject>Sub Main</StartupObject>
|
||||
<UseWindowsForms>true</UseWindowsForms>
|
||||
<MyType>WindowsForms</MyType>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Import Include="System.Data" />
|
||||
<Import Include="System.Drawing" />
|
||||
<Import Include="System.Windows.Forms" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Update="My Project\Application.Designer.vb">
|
||||
<DesignTime>True</DesignTime>
|
||||
<AutoGen>True</AutoGen>
|
||||
<DependentUpon>Application.myapp</DependentUpon>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Update="My Project\Application.myapp">
|
||||
<Generator>MyApplicationCodeGenerator</Generator>
|
||||
<LastGenOutput>Application.Designer.vb</LastGenOutput>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
8
1/adventofcode1/adventofcode1.vbproj.user
Normal file
8
1/adventofcode1/adventofcode1.vbproj.user
Normal file
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<Compile Update="Form1.vb">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
</Project>
|
@ -0,0 +1,23 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v6.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v6.0": {
|
||||
"adventofcode1/1.0.0": {
|
||||
"runtime": {
|
||||
"adventofcode1.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"adventofcode1/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
BIN
1/adventofcode1/bin/Debug/net6.0-windows/adventofcode1.dll
Normal file
BIN
1/adventofcode1/bin/Debug/net6.0-windows/adventofcode1.dll
Normal file
Binary file not shown.
BIN
1/adventofcode1/bin/Debug/net6.0-windows/adventofcode1.exe
Normal file
BIN
1/adventofcode1/bin/Debug/net6.0-windows/adventofcode1.exe
Normal file
Binary file not shown.
BIN
1/adventofcode1/bin/Debug/net6.0-windows/adventofcode1.pdb
Normal file
BIN
1/adventofcode1/bin/Debug/net6.0-windows/adventofcode1.pdb
Normal file
Binary file not shown.
@ -0,0 +1,15 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net6.0",
|
||||
"frameworks": [
|
||||
{
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "6.0.0"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.WindowsDesktop.App",
|
||||
"version": "6.0.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
2246
1/adventofcode1/bin/Debug/net6.0-windows/input.txt
Normal file
2246
1/adventofcode1/bin/Debug/net6.0-windows/input.txt
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,7 @@
|
||||
' <autogenerated/>
|
||||
Option Strict Off
|
||||
Option Explicit On
|
||||
|
||||
Imports System
|
||||
Imports System.Reflection
|
||||
<Assembly: Global.System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName:="")>
|
@ -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>
|
||||
'------------------------------------------------------------------------------
|
||||
|
||||
Option Strict Off
|
||||
Option Explicit On
|
||||
|
||||
Imports System
|
||||
Imports System.Reflection
|
||||
<Assembly: System.Reflection.AssemblyCompanyAttribute("adventofcode1"), _
|
||||
Assembly: System.Reflection.AssemblyConfigurationAttribute("Debug"), _
|
||||
Assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0"), _
|
||||
Assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0"), _
|
||||
Assembly: System.Reflection.AssemblyProductAttribute("adventofcode1"), _
|
||||
Assembly: System.Reflection.AssemblyTitleAttribute("adventofcode1"), _
|
||||
Assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0"), _
|
||||
Assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0"), _
|
||||
Assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")>
|
||||
|
||||
'Von der MSBuild WriteCodeFragment-Klasse generiert.
|
@ -0,0 +1 @@
|
||||
ca009c000c4edc774f87abea6771440da93c662a
|
Binary file not shown.
@ -0,0 +1,16 @@
|
||||
is_global = true
|
||||
build_property.ApplicationManifest =
|
||||
build_property.StartupObject = Sub Main
|
||||
build_property.ApplicationDefaultFont =
|
||||
build_property.ApplicationHighDpiMode =
|
||||
build_property.ApplicationUseCompatibleTextRendering =
|
||||
build_property.ApplicationVisualStyles =
|
||||
build_property.TargetFramework = net6.0-windows
|
||||
build_property.TargetPlatformMinVersion = 7.0
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = adventofcode1
|
||||
build_property.ProjectDir = C:\Users\Daniel\source\repos\adventofcode1\adventofcode1\
|
Binary file not shown.
@ -0,0 +1,11 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v6.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v6.0": {}
|
||||
},
|
||||
"libraries": {}
|
||||
}
|
@ -0,0 +1,22 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net6.0",
|
||||
"frameworks": [
|
||||
{
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "6.0.0"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.WindowsDesktop.App",
|
||||
"version": "6.0.0"
|
||||
}
|
||||
],
|
||||
"additionalProbingPaths": [
|
||||
"C:\\Users\\Daniel\\.dotnet\\store\\|arch|\\|tfm|",
|
||||
"C:\\Users\\Daniel\\.nuget\\packages"
|
||||
],
|
||||
"configProperties": {
|
||||
"Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
|
||||
}
|
||||
}
|
||||
}
|
BIN
1/adventofcode1/obj/Debug/net6.0-windows/adventofcode1.dll
Normal file
BIN
1/adventofcode1/obj/Debug/net6.0-windows/adventofcode1.dll
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
||||
aea559fb274627458a4d080759333924d477bff7
|
BIN
1/adventofcode1/obj/Debug/net6.0-windows/adventofcode1.pdb
Normal file
BIN
1/adventofcode1/obj/Debug/net6.0-windows/adventofcode1.pdb
Normal file
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@
|
||||
ed4b7a657c162ff0a223134f24d077e3c4cbfbe4
|
@ -0,0 +1,17 @@
|
||||
C:\Users\Daniel\source\repos\adventofcode1\adventofcode1\bin\Debug\net6.0-windows\adventofcode1.exe
|
||||
C:\Users\Daniel\source\repos\adventofcode1\adventofcode1\bin\Debug\net6.0-windows\adventofcode1.deps.json
|
||||
C:\Users\Daniel\source\repos\adventofcode1\adventofcode1\bin\Debug\net6.0-windows\adventofcode1.runtimeconfig.json
|
||||
C:\Users\Daniel\source\repos\adventofcode1\adventofcode1\bin\Debug\net6.0-windows\adventofcode1.dll
|
||||
C:\Users\Daniel\source\repos\adventofcode1\adventofcode1\bin\Debug\net6.0-windows\adventofcode1.pdb
|
||||
C:\Users\Daniel\source\repos\adventofcode1\adventofcode1\obj\Debug\net6.0-windows\adventofcode1.vbproj.AssemblyReference.cache
|
||||
C:\Users\Daniel\source\repos\adventofcode1\adventofcode1\obj\Debug\net6.0-windows\adventofcode1.Form1.resources
|
||||
C:\Users\Daniel\source\repos\adventofcode1\adventofcode1\obj\Debug\net6.0-windows\adventofcode1.vbproj.GenerateResource.cache
|
||||
C:\Users\Daniel\source\repos\adventofcode1\adventofcode1\obj\Debug\net6.0-windows\adventofcode1.GeneratedMSBuildEditorConfig.editorconfig
|
||||
C:\Users\Daniel\source\repos\adventofcode1\adventofcode1\obj\Debug\net6.0-windows\adventofcode1.AssemblyInfoInputs.cache
|
||||
C:\Users\Daniel\source\repos\adventofcode1\adventofcode1\obj\Debug\net6.0-windows\adventofcode1.AssemblyInfo.vb
|
||||
C:\Users\Daniel\source\repos\adventofcode1\adventofcode1\obj\Debug\net6.0-windows\adventofcode1.vbproj.CoreCompileInputs.cache
|
||||
C:\Users\Daniel\source\repos\adventofcode1\adventofcode1\obj\Debug\net6.0-windows\adventofcode1.dll
|
||||
C:\Users\Daniel\source\repos\adventofcode1\adventofcode1\obj\Debug\net6.0-windows\refint\adventofcode1.dll
|
||||
C:\Users\Daniel\source\repos\adventofcode1\adventofcode1\obj\Debug\net6.0-windows\adventofcode1.pdb
|
||||
C:\Users\Daniel\source\repos\adventofcode1\adventofcode1\obj\Debug\net6.0-windows\adventofcode1.genruntimeconfig.cache
|
||||
C:\Users\Daniel\source\repos\adventofcode1\adventofcode1\obj\Debug\net6.0-windows\ref\adventofcode1.dll
|
Binary file not shown.
BIN
1/adventofcode1/obj/Debug/net6.0-windows/apphost.exe
Normal file
BIN
1/adventofcode1/obj/Debug/net6.0-windows/apphost.exe
Normal file
Binary file not shown.
BIN
1/adventofcode1/obj/Debug/net6.0-windows/ref/adventofcode1.dll
Normal file
BIN
1/adventofcode1/obj/Debug/net6.0-windows/ref/adventofcode1.dll
Normal file
Binary file not shown.
Binary file not shown.
66
1/adventofcode1/obj/adventofcode1.vbproj.nuget.dgspec.json
Normal file
66
1/adventofcode1/obj/adventofcode1.vbproj.nuget.dgspec.json
Normal file
@ -0,0 +1,66 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"C:\\Users\\Daniel\\source\\repos\\adventofcode1\\adventofcode1\\adventofcode1.vbproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"C:\\Users\\Daniel\\source\\repos\\adventofcode1\\adventofcode1\\adventofcode1.vbproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\Daniel\\source\\repos\\adventofcode1\\adventofcode1\\adventofcode1.vbproj",
|
||||
"projectName": "adventofcode1",
|
||||
"projectPath": "C:\\Users\\Daniel\\source\\repos\\adventofcode1\\adventofcode1\\adventofcode1.vbproj",
|
||||
"packagesPath": "C:\\Users\\Daniel\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\Daniel\\source\\repos\\adventofcode1\\adventofcode1\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\Daniel\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net6.0-windows"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net6.0-windows7.0": {
|
||||
"targetAlias": "net6.0-windows",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net6.0-windows7.0": {
|
||||
"targetAlias": "net6.0-windows",
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
},
|
||||
"Microsoft.WindowsDesktop.App.WindowsForms": {
|
||||
"privateAssets": "none"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.402\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
15
1/adventofcode1/obj/adventofcode1.vbproj.nuget.g.props
Normal file
15
1/adventofcode1/obj/adventofcode1.vbproj.nuget.g.props
Normal file
@ -0,0 +1,15 @@
|
||||
<?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\Daniel\.nuget\packages\</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.3.0</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\Daniel\.nuget\packages\" />
|
||||
</ItemGroup>
|
||||
</Project>
|
2
1/adventofcode1/obj/adventofcode1.vbproj.nuget.g.targets
Normal file
2
1/adventofcode1/obj/adventofcode1.vbproj.nuget.g.targets
Normal file
@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
|
71
1/adventofcode1/obj/project.assets.json
Normal file
71
1/adventofcode1/obj/project.assets.json
Normal file
@ -0,0 +1,71 @@
|
||||
{
|
||||
"version": 3,
|
||||
"targets": {
|
||||
"net6.0-windows7.0": {}
|
||||
},
|
||||
"libraries": {},
|
||||
"projectFileDependencyGroups": {
|
||||
"net6.0-windows7.0": []
|
||||
},
|
||||
"packageFolders": {
|
||||
"C:\\Users\\Daniel\\.nuget\\packages\\": {}
|
||||
},
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\Daniel\\source\\repos\\adventofcode1\\adventofcode1\\adventofcode1.vbproj",
|
||||
"projectName": "adventofcode1",
|
||||
"projectPath": "C:\\Users\\Daniel\\source\\repos\\adventofcode1\\adventofcode1\\adventofcode1.vbproj",
|
||||
"packagesPath": "C:\\Users\\Daniel\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\Daniel\\source\\repos\\adventofcode1\\adventofcode1\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\Daniel\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net6.0-windows"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net6.0-windows7.0": {
|
||||
"targetAlias": "net6.0-windows",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net6.0-windows7.0": {
|
||||
"targetAlias": "net6.0-windows",
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
},
|
||||
"Microsoft.WindowsDesktop.App.WindowsForms": {
|
||||
"privateAssets": "none"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.402\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
8
1/adventofcode1/obj/project.nuget.cache
Normal file
8
1/adventofcode1/obj/project.nuget.cache
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "2VsacY5sB8AqrRYVVz8fwPZ9LKz3H+vf4ylo82gAMLpxzGaz47PziwMi2CUv6vY6rMwmtH9SA0EP3lK6vDpeEA==",
|
||||
"success": true,
|
||||
"projectFilePath": "C:\\Users\\Daniel\\source\\repos\\adventofcode1\\adventofcode1\\adventofcode1.vbproj",
|
||||
"expectedPackageFiles": [],
|
||||
"logs": []
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user