mirror of
https://github.com/Stone-Red-Code/ImgurAutoUploader.git
synced 2026-09-04 00:56:11 +02:00
Added editor
This commit is contained in:
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,33 @@
|
||||
<Window x:Class="ImgurAutoUploader.EditWindow"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
xmlns:local="clr-namespace:ImgurAutoUploader"
|
||||
mc:Ignorable="d"
|
||||
SizeChanged="Window_SizeChanged"
|
||||
Title="EditWindow" Height="450" Width="800">
|
||||
<Grid Background="#2C2C2C">
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="*" />
|
||||
<RowDefinition Height="30px" />
|
||||
</Grid.RowDefinitions>
|
||||
|
||||
<Viewbox x:Name="viewBox" Stretch="Uniform">
|
||||
<InkCanvas x:Name="inkCanvas" PreviewMouseWheel="InkCanvas_PreviewMouseWheel" PreviewMouseLeftButtonDown="InkCanvas_PreviewMouseLeftButtonDown" PreviewMouseLeftButtonUp="InkCanvas_PreviewMouseLeftButtonUp" PreviewMouseRightButtonDown="InkCanvas_PreviewMouseRightButtonDown" PreviewMouseRightButtonUp="InkCanvas_PreviewMouseRightButtonUp" Background="Transparent">
|
||||
<InkCanvas.DefaultDrawingAttributes>
|
||||
<DrawingAttributes x:Name="attribute" Width="10" Height="10" Color="Red" />
|
||||
</InkCanvas.DefaultDrawingAttributes>
|
||||
</InkCanvas>
|
||||
</Viewbox>
|
||||
<Grid Grid.Row="1">
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="*" />
|
||||
<ColumnDefinition Width="*" />
|
||||
</Grid.ColumnDefinitions>
|
||||
<ProgressBar x:Name="UploadProgressBar" Visibility="Collapsed" IsIndeterminate="True" Grid.ColumnSpan="2" />
|
||||
<Button x:Name="SecretButton" Content="Upload" Grid.Column="0" Click="UploadButton_Click" />
|
||||
<Button x:Name="UploadButton" Content="Save" Grid.Column="1" Click="SaveButton_Click" />
|
||||
</Grid>
|
||||
</Grid>
|
||||
</Window>
|
||||
@@ -0,0 +1,165 @@
|
||||
using Imgur.API.Authentication;
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using System.Drawing;
|
||||
using System.IO;
|
||||
using System.Windows;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Ink;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Imaging;
|
||||
|
||||
namespace ImgurAutoUploader
|
||||
{
|
||||
/// <summary>
|
||||
/// Interaktionslogik für EditWindow.xaml
|
||||
/// </summary>
|
||||
public partial class EditWindow : Window
|
||||
{
|
||||
private BitmapSource bitmap;
|
||||
private ApiClient apiClient;
|
||||
|
||||
private struct OriginalSize
|
||||
{
|
||||
public OriginalSize(double x, double y)
|
||||
{
|
||||
X = x;
|
||||
Y = y;
|
||||
}
|
||||
|
||||
public double X { get; set; }
|
||||
public double Y { get; set; }
|
||||
}
|
||||
|
||||
private OriginalSize originalSize = new OriginalSize(10, 10);
|
||||
|
||||
public EditWindow(BitmapSource bitmapSource, ApiClient client)
|
||||
{
|
||||
InitializeComponent();
|
||||
bitmap = bitmapSource;
|
||||
apiClient = client;
|
||||
|
||||
inkCanvas.Width = bitmap.Width;
|
||||
inkCanvas.Height = bitmap.Height;
|
||||
|
||||
ImageBrush ib = new ImageBrush();
|
||||
ib.ImageSource = bitmapSource;
|
||||
inkCanvas.Background = ib;
|
||||
}
|
||||
|
||||
private void InkCanvas_PreviewMouseWheel(object sender, MouseWheelEventArgs e)
|
||||
{
|
||||
if (e.Delta > 0)
|
||||
{
|
||||
originalSize.X++;
|
||||
originalSize.Y++;
|
||||
}
|
||||
else if (originalSize.X > 1)
|
||||
{
|
||||
originalSize.X--;
|
||||
originalSize.Y--;
|
||||
}
|
||||
|
||||
UpdateScale();
|
||||
}
|
||||
|
||||
private void InkCanvas_PreviewMouseRightButtonDown(object sender, MouseButtonEventArgs e)
|
||||
{
|
||||
inkCanvas.EditingMode = InkCanvasEditingMode.EraseByPoint;
|
||||
}
|
||||
|
||||
private void InkCanvas_PreviewMouseRightButtonUp(object sender, MouseButtonEventArgs e)
|
||||
{
|
||||
inkCanvas.EditingMode = InkCanvasEditingMode.Ink;
|
||||
}
|
||||
|
||||
private void InkCanvas_PreviewMouseLeftButtonDown(object sender, MouseButtonEventArgs e)
|
||||
{
|
||||
inkCanvas.DefaultDrawingAttributes.Height = originalSize.Y;
|
||||
inkCanvas.DefaultDrawingAttributes.Width = originalSize.X;
|
||||
inkCanvas.EraserShape = new EllipseStylusShape(inkCanvas.DefaultDrawingAttributes.Width, inkCanvas.DefaultDrawingAttributes.Height);
|
||||
}
|
||||
|
||||
private void InkCanvas_PreviewMouseLeftButtonUp(object sender, MouseButtonEventArgs e)
|
||||
{
|
||||
UpdateScale();
|
||||
}
|
||||
|
||||
private void SaveButton_Click(object sender, RoutedEventArgs e)
|
||||
{
|
||||
this.IsEnabled = false;
|
||||
this.Cursor = Cursors.Wait;
|
||||
Clipboard.SetImage(ControlToImage(inkCanvas));
|
||||
this.Close();
|
||||
}
|
||||
|
||||
private async void UploadButton_Click(object sender, RoutedEventArgs e)
|
||||
{
|
||||
this.IsEnabled = false;
|
||||
Mouse.OverrideCursor = Cursors.Wait;
|
||||
|
||||
UploadProgressBar.Visibility = Visibility.Visible;
|
||||
SecretButton.Visibility = Visibility.Collapsed;
|
||||
UploadButton.Visibility = Visibility.Collapsed;
|
||||
|
||||
string link = await UploadManager.Upload(bitmap, apiClient);
|
||||
|
||||
Clipboard.SetText(link);
|
||||
UploadProgressBar.Visibility = Visibility.Collapsed;
|
||||
this.Close();
|
||||
|
||||
Mouse.OverrideCursor = null;
|
||||
}
|
||||
|
||||
public BitmapImage ControlToImage(FrameworkElement control)
|
||||
{
|
||||
RenderTargetBitmap rtb = new RenderTargetBitmap((int)control.ActualWidth, (int)control.ActualHeight, 96, 96, PixelFormats.Pbgra32);
|
||||
rtb.Render(control);
|
||||
|
||||
BitmapImage bitmapImage = new BitmapImage();
|
||||
PngBitmapEncoder bitmapEncoder = new PngBitmapEncoder();
|
||||
bitmapEncoder.Frames.Add(BitmapFrame.Create(rtb));
|
||||
|
||||
using (var stream = new MemoryStream())
|
||||
{
|
||||
bitmapEncoder.Save(stream);
|
||||
stream.Seek(0, SeekOrigin.Begin);
|
||||
|
||||
bitmapImage.BeginInit();
|
||||
bitmapImage.CacheOption = BitmapCacheOption.OnLoad;
|
||||
bitmapImage.StreamSource = stream;
|
||||
bitmapImage.EndInit();
|
||||
}
|
||||
return bitmapImage;
|
||||
}
|
||||
|
||||
private void Window_SizeChanged(object sender, SizeChangedEventArgs e)
|
||||
{
|
||||
UpdateScale();
|
||||
}
|
||||
|
||||
private void UpdateScale()
|
||||
{
|
||||
double a = originalSize.Y * viewBox.GetScaleFactor() + 1;
|
||||
double b = originalSize.X * viewBox.GetScaleFactor() + 1;
|
||||
inkCanvas.DefaultDrawingAttributes.Height = a;
|
||||
inkCanvas.DefaultDrawingAttributes.Width = b;
|
||||
inkCanvas.EraserShape = new EllipseStylusShape(inkCanvas.DefaultDrawingAttributes.Width, inkCanvas.DefaultDrawingAttributes.Height);
|
||||
}
|
||||
}
|
||||
|
||||
public static class ViewBoxExtensions
|
||||
{
|
||||
public static double GetScaleFactor(this Viewbox viewbox)
|
||||
{
|
||||
if (viewbox.Child == null ||
|
||||
(viewbox.Child is FrameworkElement) == false)
|
||||
{
|
||||
return double.NaN;
|
||||
}
|
||||
FrameworkElement child = viewbox.Child as FrameworkElement;
|
||||
return viewbox.ActualWidth / child.ActualWidth;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -8,6 +8,7 @@
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Imgur.API" Version="5.0.0" />
|
||||
<PackageReference Include="System.Drawing.Common" Version="5.0.2" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
||||
@@ -9,11 +9,17 @@
|
||||
</ApplicationDefinition>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Update="EditWindow.xaml.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
<Compile Update="Popup.xaml.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Page Update="EditWindow.xaml">
|
||||
<SubType>Designer</SubType>
|
||||
</Page>
|
||||
<Page Update="MainWindow.xaml">
|
||||
<SubType>Designer</SubType>
|
||||
</Page>
|
||||
|
||||
@@ -5,18 +5,39 @@
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
xmlns:local="clr-namespace:ImgurAutoUploader"
|
||||
mc:Ignorable="d"
|
||||
Loaded="Window_Loaded"
|
||||
WindowStyle="None"
|
||||
ResizeMode="NoResize"
|
||||
Topmost="True"
|
||||
Title="Popup" Height="259" Width="419">
|
||||
<Border BorderBrush="Gray" BorderThickness="0.5">
|
||||
|
||||
<Window.Resources>
|
||||
<Style x:Key="FancyButton" TargetType="Button">
|
||||
<Setter Property="OverridesDefaultStyle" Value="True" />
|
||||
<Setter Property="Cursor" Value="Hand" />
|
||||
<Setter Property="Template">
|
||||
<Setter.Value>
|
||||
<ControlTemplate TargetType="Button">
|
||||
<Border Name="border" BorderThickness="0" BorderBrush="Black" Background="{TemplateBinding Background}">
|
||||
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center" />
|
||||
</Border>
|
||||
</ControlTemplate>
|
||||
</Setter.Value>
|
||||
</Setter>
|
||||
</Style>
|
||||
</Window.Resources>
|
||||
|
||||
<Grid x:Name="grid" MouseEnter="Grid_MouseEnter" MouseLeave="Grid_MouseLeave" Background="#2C2C2C">
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="8*" />
|
||||
<RowDefinition Height="1*" />
|
||||
</Grid.RowDefinitions>
|
||||
<Image x:Name="imageBox" Stretch="Uniform" Margin="1" />
|
||||
|
||||
<Button Background="#2C2C2C" Style="{StaticResource FancyButton}" MouseEnter="EditButton_MouseEnter" MouseLeave="EditButton_MouseLeave" Click="EditButton_Click" Cursor="Hand">
|
||||
<Grid>
|
||||
<Image x:Name="imageBox" Stretch="Uniform" />
|
||||
<Label x:Name="editLabel" Content="EDIT" Visibility="Collapsed" VerticalAlignment="Center" HorizontalAlignment="Center" FontSize="36" FontWeight="Bold" FontFamily="Myanmar Text" />
|
||||
</Grid>
|
||||
</Button>
|
||||
<Grid Grid.Row="1" Grid.ColumnSpan="2">
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="1*" />
|
||||
@@ -28,5 +49,4 @@
|
||||
<Button x:Name="SecretButton" Content="It's a secret" Grid.Column="1" Click="SecretButton_Click" />
|
||||
</Grid>
|
||||
</Grid>
|
||||
</Border>
|
||||
</Window>
|
||||
@@ -5,6 +5,7 @@ using System.Diagnostics;
|
||||
using System.IO;
|
||||
using System.Net.Http;
|
||||
using System.Windows;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Threading;
|
||||
|
||||
@@ -18,7 +19,7 @@ namespace ImgurAutoUploader
|
||||
private BitmapSource bitmap;
|
||||
private ApiClient apiClient;
|
||||
private DispatcherTimer timer = new DispatcherTimer();
|
||||
private bool upload = false;
|
||||
private bool allowHide = true;
|
||||
|
||||
public Popup(BitmapSource bitmapSource, ApiClient client)
|
||||
{
|
||||
@@ -35,59 +36,29 @@ namespace ImgurAutoUploader
|
||||
timer.Start();
|
||||
}
|
||||
|
||||
private void Window_Loaded(object sender, RoutedEventArgs e)
|
||||
private async void UploadButton_Click(object sender, RoutedEventArgs e)
|
||||
{
|
||||
}
|
||||
this.IsEnabled = false;
|
||||
|
||||
private void UploadButton_Click(object sender, RoutedEventArgs e)
|
||||
{
|
||||
timer.Stop();
|
||||
using (var fileStream = new FileStream("img.png", FileMode.Create))
|
||||
{
|
||||
BitmapEncoder encoder = new PngBitmapEncoder();
|
||||
encoder.Frames.Add(BitmapFrame.Create(bitmap));
|
||||
encoder.Save(fileStream);
|
||||
}
|
||||
Upload();
|
||||
}
|
||||
|
||||
private void SecretButton_Click(object sender, RoutedEventArgs e)
|
||||
{
|
||||
Close();
|
||||
}
|
||||
|
||||
private async void Upload()
|
||||
{
|
||||
string link = "";
|
||||
|
||||
upload = true;
|
||||
allowHide = false;
|
||||
UploadProgressBar.Visibility = Visibility.Visible;
|
||||
SecretButton.Visibility = Visibility.Collapsed;
|
||||
UploadButton.Visibility = Visibility.Collapsed;
|
||||
|
||||
try
|
||||
{
|
||||
using HttpClient httpClient = new();
|
||||
string link = await UploadManager.Upload(bitmap, apiClient);
|
||||
|
||||
string filePath = @"img.png";
|
||||
using var fileStream = File.OpenRead(filePath);
|
||||
|
||||
ImageEndpoint imageEndpoint = new ImageEndpoint(apiClient, httpClient);
|
||||
var imageUpload = await imageEndpoint.UploadImageAsync(fileStream);
|
||||
|
||||
link = imageUpload?.Link ?? "Error";
|
||||
}
|
||||
catch
|
||||
{
|
||||
link = "Error";
|
||||
}
|
||||
Clipboard.SetText(link);
|
||||
|
||||
LinkTextBlock.Text = link;
|
||||
UploadProgressBar.Visibility = Visibility.Collapsed;
|
||||
LinkTextBlock.Visibility = Visibility.Visible;
|
||||
timer.Start();
|
||||
System.Collections.Hashtable a;
|
||||
}
|
||||
|
||||
private void SecretButton_Click(object sender, RoutedEventArgs e)
|
||||
{
|
||||
Close();
|
||||
}
|
||||
|
||||
private void TimerTick(object sender, EventArgs e)
|
||||
@@ -100,14 +71,34 @@ namespace ImgurAutoUploader
|
||||
|
||||
private void Grid_MouseEnter(object sender, System.Windows.Input.MouseEventArgs e)
|
||||
{
|
||||
if (!upload)
|
||||
if (allowHide)
|
||||
timer.Stop();
|
||||
}
|
||||
|
||||
private void Grid_MouseLeave(object sender, System.Windows.Input.MouseEventArgs e)
|
||||
{
|
||||
if (!upload)
|
||||
if (allowHide)
|
||||
timer.Start();
|
||||
}
|
||||
|
||||
private void EditButton_MouseEnter(object sender, System.Windows.Input.MouseEventArgs e)
|
||||
{
|
||||
editLabel.Visibility = Visibility.Visible;
|
||||
imageBox.Opacity = 0.5;
|
||||
}
|
||||
|
||||
private void EditButton_MouseLeave(object sender, System.Windows.Input.MouseEventArgs e)
|
||||
{
|
||||
editLabel.Visibility = Visibility.Collapsed;
|
||||
imageBox.Opacity = 1;
|
||||
}
|
||||
|
||||
private void EditButton_Click(object sender, RoutedEventArgs e)
|
||||
{
|
||||
allowHide = false;
|
||||
this.Hide();
|
||||
new EditWindow(bitmap, apiClient).ShowDialog();
|
||||
this.Close();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
using Imgur.API.Authentication;
|
||||
using Imgur.API.Endpoints;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Net.Http;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows;
|
||||
using System.Windows.Media.Imaging;
|
||||
|
||||
namespace ImgurAutoUploader
|
||||
{
|
||||
internal class UploadManager
|
||||
{
|
||||
static public async Task<string> Upload(BitmapSource bitmap, ApiClient apiClient)
|
||||
{
|
||||
string link = "";
|
||||
|
||||
using (var fileStream = new FileStream("img.png", FileMode.Create))
|
||||
{
|
||||
BitmapEncoder encoder = new PngBitmapEncoder();
|
||||
encoder.Frames.Add(BitmapFrame.Create(bitmap));
|
||||
encoder.Save(fileStream);
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
using HttpClient httpClient = new();
|
||||
|
||||
string filePath = @"img.png";
|
||||
using var fileStream = File.OpenRead(filePath);
|
||||
|
||||
ImageEndpoint imageEndpoint = new ImageEndpoint(apiClient, httpClient);
|
||||
var imageUpload = await imageEndpoint.UploadImageAsync(fileStream);
|
||||
|
||||
link = imageUpload?.Link ?? "Error";
|
||||
}
|
||||
catch
|
||||
{
|
||||
link = "Error";
|
||||
}
|
||||
return link;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -8,7 +8,8 @@
|
||||
".NETCoreApp,Version=v5.0": {
|
||||
"ImgurAutoUploader/1.0.0": {
|
||||
"dependencies": {
|
||||
"Imgur.API": "5.0.0"
|
||||
"Imgur.API": "5.0.0",
|
||||
"System.Drawing.Common": "5.0.2"
|
||||
},
|
||||
"runtime": {
|
||||
"ImgurAutoUploader.dll": {}
|
||||
@@ -25,6 +26,37 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.NETCore.Platforms/5.0.0": {},
|
||||
"Microsoft.Win32.SystemEvents/5.0.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "5.0.0"
|
||||
}
|
||||
},
|
||||
"System.Drawing.Common/5.0.2": {
|
||||
"dependencies": {
|
||||
"Microsoft.Win32.SystemEvents": "5.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netcoreapp3.0/System.Drawing.Common.dll": {
|
||||
"assemblyVersion": "5.0.0.2",
|
||||
"fileVersion": "5.0.421.11614"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
|
||||
"rid": "unix",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "5.0.0.2",
|
||||
"fileVersion": "5.0.421.11614"
|
||||
},
|
||||
"runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "5.0.0.2",
|
||||
"fileVersion": "5.0.421.11614"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Text.Json/4.7.2": {}
|
||||
}
|
||||
},
|
||||
@@ -41,6 +73,27 @@
|
||||
"path": "imgur.api/5.0.0",
|
||||
"hashPath": "imgur.api.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.NETCore.Platforms/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
|
||||
"path": "microsoft.netcore.platforms/5.0.0",
|
||||
"hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Win32.SystemEvents/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==",
|
||||
"path": "microsoft.win32.systemevents/5.0.0",
|
||||
"hashPath": "microsoft.win32.systemevents.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"System.Drawing.Common/5.0.2": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-rvr/M1WPf24ljpvvrVd74+NdjRUJu1bBkspkZcnzSZnmAUQWSvanlQ0k/hVHk+cHufZbZfu7vOh/vYc0q5Uu/A==",
|
||||
"path": "system.drawing.common/5.0.2",
|
||||
"hashPath": "system.drawing.common.5.0.2.nupkg.sha512"
|
||||
},
|
||||
"System.Text.Json/4.7.2": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
Before Width: | Height: | Size: 56 KiB After Width: | Height: | Size: 5.9 KiB |
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
@@ -8,7 +8,8 @@
|
||||
".NETCoreApp,Version=v5.0": {
|
||||
"ImgurAutoUploader/1.0.0": {
|
||||
"dependencies": {
|
||||
"Imgur.API": "5.0.0"
|
||||
"Imgur.API": "5.0.0",
|
||||
"System.Drawing.Common": "5.0.2"
|
||||
},
|
||||
"runtime": {
|
||||
"ImgurAutoUploader.dll": {}
|
||||
@@ -25,6 +26,37 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.NETCore.Platforms/5.0.0": {},
|
||||
"Microsoft.Win32.SystemEvents/5.0.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "5.0.0"
|
||||
}
|
||||
},
|
||||
"System.Drawing.Common/5.0.2": {
|
||||
"dependencies": {
|
||||
"Microsoft.Win32.SystemEvents": "5.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netcoreapp3.0/System.Drawing.Common.dll": {
|
||||
"assemblyVersion": "5.0.0.2",
|
||||
"fileVersion": "5.0.421.11614"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
|
||||
"rid": "unix",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "5.0.0.2",
|
||||
"fileVersion": "5.0.421.11614"
|
||||
},
|
||||
"runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "5.0.0.2",
|
||||
"fileVersion": "5.0.421.11614"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Text.Json/4.7.2": {}
|
||||
}
|
||||
},
|
||||
@@ -41,6 +73,27 @@
|
||||
"path": "imgur.api/5.0.0",
|
||||
"hashPath": "imgur.api.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.NETCore.Platforms/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
|
||||
"path": "microsoft.netcore.platforms/5.0.0",
|
||||
"hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Win32.SystemEvents/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==",
|
||||
"path": "microsoft.win32.systemevents/5.0.0",
|
||||
"hashPath": "microsoft.win32.systemevents.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"System.Drawing.Common/5.0.2": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-rvr/M1WPf24ljpvvrVd74+NdjRUJu1bBkspkZcnzSZnmAUQWSvanlQ0k/hVHk+cHufZbZfu7vOh/vYc0q5Uu/A==",
|
||||
"path": "system.drawing.common/5.0.2",
|
||||
"hashPath": "system.drawing.common.5.0.2.nupkg.sha512"
|
||||
},
|
||||
"System.Text.Json/4.7.2": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
Before Width: | Height: | Size: 8.2 KiB After Width: | Height: | Size: 32 KiB |
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
@@ -1,4 +1,4 @@
|
||||
#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "99FA8685AEF1729F57661AB07C610698CB6BC3DF"
|
||||
#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "3E40B49D1DF11433B65DECD6A4AD7C0361A1EEA6"
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// Dieser Code wurde von einem Tool generiert.
|
||||
@@ -9,7 +9,6 @@
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using ImgurAutoUploader;
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using System.Windows;
|
||||
@@ -48,7 +47,7 @@ namespace ImgurAutoUploader {
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.4.0")]
|
||||
public void InitializeComponent() {
|
||||
|
||||
#line 5 "..\..\..\App.xaml"
|
||||
#line 4 "..\..\..\App.xaml"
|
||||
this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
|
||||
|
||||
#line default
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "99FA8685AEF1729F57661AB07C610698CB6BC3DF"
|
||||
#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "3E40B49D1DF11433B65DECD6A4AD7C0361A1EEA6"
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// Dieser Code wurde von einem Tool generiert.
|
||||
@@ -9,7 +9,6 @@
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using ImgurAutoUploader;
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using System.Windows;
|
||||
@@ -48,7 +47,7 @@ namespace ImgurAutoUploader {
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.4.0")]
|
||||
public void InitializeComponent() {
|
||||
|
||||
#line 5 "..\..\..\App.xaml"
|
||||
#line 4 "..\..\..\App.xaml"
|
||||
this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
|
||||
|
||||
#line default
|
||||
|
||||
Binary file not shown.
@@ -0,0 +1,195 @@
|
||||
#pragma checksum "..\..\..\EditWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "FF464D22B32577E51CF7AA00EA9135DC1EF04854"
|
||||
//------------------------------------------------------------------------------
|
||||
// <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>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using ImgurAutoUploader;
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using System.Windows;
|
||||
using System.Windows.Automation;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Controls.Primitives;
|
||||
using System.Windows.Controls.Ribbon;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Ink;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Markup;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Animation;
|
||||
using System.Windows.Media.Effects;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Media.Media3D;
|
||||
using System.Windows.Media.TextFormatting;
|
||||
using System.Windows.Navigation;
|
||||
using System.Windows.Shapes;
|
||||
using System.Windows.Shell;
|
||||
|
||||
|
||||
namespace ImgurAutoUploader {
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// EditWindow
|
||||
/// </summary>
|
||||
public partial class EditWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
|
||||
|
||||
|
||||
#line 16 "..\..\..\EditWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Viewbox viewBox;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 17 "..\..\..\EditWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.InkCanvas inkCanvas;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 19 "..\..\..\EditWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Ink.DrawingAttributes attribute;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 28 "..\..\..\EditWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.ProgressBar UploadProgressBar;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 29 "..\..\..\EditWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Button SecretButton;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 30 "..\..\..\EditWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Button UploadButton;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
private bool _contentLoaded;
|
||||
|
||||
/// <summary>
|
||||
/// InitializeComponent
|
||||
/// </summary>
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.4.0")]
|
||||
public void InitializeComponent() {
|
||||
if (_contentLoaded) {
|
||||
return;
|
||||
}
|
||||
_contentLoaded = true;
|
||||
System.Uri resourceLocater = new System.Uri("/ImgurAutoUploader;component/editwindow.xaml", System.UriKind.Relative);
|
||||
|
||||
#line 1 "..\..\..\EditWindow.xaml"
|
||||
System.Windows.Application.LoadComponent(this, resourceLocater);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
}
|
||||
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.4.0")]
|
||||
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
|
||||
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
|
||||
switch (connectionId)
|
||||
{
|
||||
case 1:
|
||||
|
||||
#line 8 "..\..\..\EditWindow.xaml"
|
||||
((ImgurAutoUploader.EditWindow)(target)).SizeChanged += new System.Windows.SizeChangedEventHandler(this.Window_SizeChanged);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 2:
|
||||
this.viewBox = ((System.Windows.Controls.Viewbox)(target));
|
||||
return;
|
||||
case 3:
|
||||
this.inkCanvas = ((System.Windows.Controls.InkCanvas)(target));
|
||||
|
||||
#line 17 "..\..\..\EditWindow.xaml"
|
||||
this.inkCanvas.PreviewMouseWheel += new System.Windows.Input.MouseWheelEventHandler(this.InkCanvas_PreviewMouseWheel);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
#line 17 "..\..\..\EditWindow.xaml"
|
||||
this.inkCanvas.PreviewMouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.InkCanvas_PreviewMouseLeftButtonDown);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
#line 17 "..\..\..\EditWindow.xaml"
|
||||
this.inkCanvas.PreviewMouseLeftButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.InkCanvas_PreviewMouseLeftButtonUp);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
#line 17 "..\..\..\EditWindow.xaml"
|
||||
this.inkCanvas.PreviewMouseRightButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.InkCanvas_PreviewMouseRightButtonDown);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
#line 17 "..\..\..\EditWindow.xaml"
|
||||
this.inkCanvas.PreviewMouseRightButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.InkCanvas_PreviewMouseRightButtonUp);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 4:
|
||||
this.attribute = ((System.Windows.Ink.DrawingAttributes)(target));
|
||||
return;
|
||||
case 5:
|
||||
this.UploadProgressBar = ((System.Windows.Controls.ProgressBar)(target));
|
||||
return;
|
||||
case 6:
|
||||
this.SecretButton = ((System.Windows.Controls.Button)(target));
|
||||
|
||||
#line 29 "..\..\..\EditWindow.xaml"
|
||||
this.SecretButton.Click += new System.Windows.RoutedEventHandler(this.UploadButton_Click);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 7:
|
||||
this.UploadButton = ((System.Windows.Controls.Button)(target));
|
||||
|
||||
#line 30 "..\..\..\EditWindow.xaml"
|
||||
this.UploadButton.Click += new System.Windows.RoutedEventHandler(this.SaveButton_Click);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
}
|
||||
this._contentLoaded = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,195 @@
|
||||
#pragma checksum "..\..\..\EditWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "FF464D22B32577E51CF7AA00EA9135DC1EF04854"
|
||||
//------------------------------------------------------------------------------
|
||||
// <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>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using ImgurAutoUploader;
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using System.Windows;
|
||||
using System.Windows.Automation;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Controls.Primitives;
|
||||
using System.Windows.Controls.Ribbon;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Ink;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Markup;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Animation;
|
||||
using System.Windows.Media.Effects;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Media.Media3D;
|
||||
using System.Windows.Media.TextFormatting;
|
||||
using System.Windows.Navigation;
|
||||
using System.Windows.Shapes;
|
||||
using System.Windows.Shell;
|
||||
|
||||
|
||||
namespace ImgurAutoUploader {
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// EditWindow
|
||||
/// </summary>
|
||||
public partial class EditWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
|
||||
|
||||
|
||||
#line 16 "..\..\..\EditWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Viewbox viewBox;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 17 "..\..\..\EditWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.InkCanvas inkCanvas;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 19 "..\..\..\EditWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Ink.DrawingAttributes attribute;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 28 "..\..\..\EditWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.ProgressBar UploadProgressBar;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 29 "..\..\..\EditWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Button SecretButton;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 30 "..\..\..\EditWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Button UploadButton;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
private bool _contentLoaded;
|
||||
|
||||
/// <summary>
|
||||
/// InitializeComponent
|
||||
/// </summary>
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.4.0")]
|
||||
public void InitializeComponent() {
|
||||
if (_contentLoaded) {
|
||||
return;
|
||||
}
|
||||
_contentLoaded = true;
|
||||
System.Uri resourceLocater = new System.Uri("/ImgurAutoUploader;component/editwindow.xaml", System.UriKind.Relative);
|
||||
|
||||
#line 1 "..\..\..\EditWindow.xaml"
|
||||
System.Windows.Application.LoadComponent(this, resourceLocater);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
}
|
||||
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.4.0")]
|
||||
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
|
||||
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
|
||||
switch (connectionId)
|
||||
{
|
||||
case 1:
|
||||
|
||||
#line 8 "..\..\..\EditWindow.xaml"
|
||||
((ImgurAutoUploader.EditWindow)(target)).SizeChanged += new System.Windows.SizeChangedEventHandler(this.Window_SizeChanged);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 2:
|
||||
this.viewBox = ((System.Windows.Controls.Viewbox)(target));
|
||||
return;
|
||||
case 3:
|
||||
this.inkCanvas = ((System.Windows.Controls.InkCanvas)(target));
|
||||
|
||||
#line 17 "..\..\..\EditWindow.xaml"
|
||||
this.inkCanvas.PreviewMouseWheel += new System.Windows.Input.MouseWheelEventHandler(this.InkCanvas_PreviewMouseWheel);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
#line 17 "..\..\..\EditWindow.xaml"
|
||||
this.inkCanvas.PreviewMouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.InkCanvas_PreviewMouseLeftButtonDown);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
#line 17 "..\..\..\EditWindow.xaml"
|
||||
this.inkCanvas.PreviewMouseLeftButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.InkCanvas_PreviewMouseLeftButtonUp);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
#line 17 "..\..\..\EditWindow.xaml"
|
||||
this.inkCanvas.PreviewMouseRightButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.InkCanvas_PreviewMouseRightButtonDown);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
#line 17 "..\..\..\EditWindow.xaml"
|
||||
this.inkCanvas.PreviewMouseRightButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.InkCanvas_PreviewMouseRightButtonUp);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 4:
|
||||
this.attribute = ((System.Windows.Ink.DrawingAttributes)(target));
|
||||
return;
|
||||
case 5:
|
||||
this.UploadProgressBar = ((System.Windows.Controls.ProgressBar)(target));
|
||||
return;
|
||||
case 6:
|
||||
this.SecretButton = ((System.Windows.Controls.Button)(target));
|
||||
|
||||
#line 29 "..\..\..\EditWindow.xaml"
|
||||
this.SecretButton.Click += new System.Windows.RoutedEventHandler(this.UploadButton_Click);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 7:
|
||||
this.UploadButton = ((System.Windows.Controls.Button)(target));
|
||||
|
||||
#line 30 "..\..\..\EditWindow.xaml"
|
||||
this.UploadButton.Click += new System.Windows.RoutedEventHandler(this.SaveButton_Click);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
}
|
||||
this._contentLoaded = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Binary file not shown.
+1
-1
@@ -1 +1 @@
|
||||
287619e3dc2890c6218f41fa83f231cb8a9bee42
|
||||
36767d1b66bc44751b5585b2d98f558707188d83
|
||||
|
||||
+5
@@ -24,3 +24,8 @@ C:\Users\David\Google Drive\Programmieren\ImgurAutoUploader\ImgurAutoUploader\ob
|
||||
C:\Users\David\Google Drive\Programmieren\ImgurAutoUploader\ImgurAutoUploader\obj\Debug\net5.0-windows\ImgurAutoUploader.genruntimeconfig.cache
|
||||
C:\Users\David\Google Drive\Programmieren\ImgurAutoUploader\ImgurAutoUploader\obj\Debug\net5.0-windows\Popup.g.cs
|
||||
C:\Users\David\Google Drive\Programmieren\ImgurAutoUploader\ImgurAutoUploader\obj\Debug\net5.0-windows\Popup.baml
|
||||
C:\Users\David\Google Drive\Programmieren\ImgurAutoUploader\ImgurAutoUploader\bin\Debug\net5.0-windows\System.Drawing.Common.dll
|
||||
C:\Users\David\Google Drive\Programmieren\ImgurAutoUploader\ImgurAutoUploader\bin\Debug\net5.0-windows\runtimes\unix\lib\netcoreapp3.0\System.Drawing.Common.dll
|
||||
C:\Users\David\Google Drive\Programmieren\ImgurAutoUploader\ImgurAutoUploader\bin\Debug\net5.0-windows\runtimes\win\lib\netcoreapp3.0\System.Drawing.Common.dll
|
||||
C:\Users\David\Google Drive\Programmieren\ImgurAutoUploader\ImgurAutoUploader\obj\Debug\net5.0-windows\EditWindow.g.cs
|
||||
C:\Users\David\Google Drive\Programmieren\ImgurAutoUploader\ImgurAutoUploader\obj\Debug\net5.0-windows\EditWindow.baml
|
||||
|
||||
BIN
Binary file not shown.
@@ -17,6 +17,51 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.NETCore.Platforms/5.0.0": {},
|
||||
"Microsoft.Win32.SystemEvents/5.0.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "5.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.20.51904"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.20.51904"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Drawing.Common/5.0.2": {
|
||||
"dependencies": {
|
||||
"Microsoft.Win32.SystemEvents": "5.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netcoreapp3.0/System.Drawing.Common.dll": {
|
||||
"assemblyVersion": "5.0.0.2",
|
||||
"fileVersion": "5.0.421.11614"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
|
||||
"rid": "unix",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "5.0.0.2",
|
||||
"fileVersion": "5.0.421.11614"
|
||||
},
|
||||
"runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "5.0.0.2",
|
||||
"fileVersion": "5.0.421.11614"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Text.Json/4.7.2": {
|
||||
"runtime": {
|
||||
"lib/netcoreapp3.0/System.Text.Json.dll": {
|
||||
@@ -35,6 +80,27 @@
|
||||
"path": "imgur.api/5.0.0",
|
||||
"hashPath": "imgur.api.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.NETCore.Platforms/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
|
||||
"path": "microsoft.netcore.platforms/5.0.0",
|
||||
"hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Win32.SystemEvents/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==",
|
||||
"path": "microsoft.win32.systemevents/5.0.0",
|
||||
"hashPath": "microsoft.win32.systemevents.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"System.Drawing.Common/5.0.2": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-rvr/M1WPf24ljpvvrVd74+NdjRUJu1bBkspkZcnzSZnmAUQWSvanlQ0k/hVHk+cHufZbZfu7vOh/vYc0q5Uu/A==",
|
||||
"path": "system.drawing.common/5.0.2",
|
||||
"hashPath": "system.drawing.common.5.0.2.nupkg.sha512"
|
||||
},
|
||||
"System.Text.Json/4.7.2": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -10,11 +10,11 @@ none
|
||||
false
|
||||
TRACE;DEBUG;NET;NET5_0;NETCOREAPP
|
||||
C:\Users\David\Google Drive\Programmieren\ImgurAutoUploader\ImgurAutoUploader\App.xaml
|
||||
2-519363072
|
||||
3721772035
|
||||
|
||||
4-587503363
|
||||
1941800250196
|
||||
MainWindow.xaml;Popup.xaml;
|
||||
61652257815
|
||||
195-2131317905
|
||||
EditWindow.xaml;MainWindow.xaml;Popup.xaml;
|
||||
|
||||
False
|
||||
|
||||
|
||||
@@ -10,11 +10,11 @@ none
|
||||
false
|
||||
TRACE;DEBUG;NET;NET5_0;NETCOREAPP
|
||||
C:\Users\David\Google Drive\Programmieren\ImgurAutoUploader\ImgurAutoUploader\App.xaml
|
||||
2-519363072
|
||||
3721772035
|
||||
|
||||
61085017147
|
||||
1941800250196
|
||||
MainWindow.xaml;Popup.xaml;
|
||||
8-970188971
|
||||
195-2131317905
|
||||
EditWindow.xaml;MainWindow.xaml;Popup.xaml;
|
||||
|
||||
False
|
||||
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
|
||||
|
||||
FC:\Users\David\Google Drive\Programmieren\ImgurAutoUploader\ImgurAutoUploader\EditWindow.xaml;;
|
||||
FC:\Users\David\Google Drive\Programmieren\ImgurAutoUploader\ImgurAutoUploader\MainWindow.xaml;;
|
||||
FC:\Users\David\Google Drive\Programmieren\ImgurAutoUploader\ImgurAutoUploader\Popup.xaml;;
|
||||
|
||||
|
||||
Binary file not shown.
@@ -1,4 +1,4 @@
|
||||
#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "402DF1E8EBAC3D4F74E9632203C89B5CA1FF810E"
|
||||
#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "43CFCDD3DC27B6CD023BA81B4A8154CE4E084BD4"
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// Dieser Code wurde von einem Tool generiert.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "402DF1E8EBAC3D4F74E9632203C89B5CA1FF810E"
|
||||
#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "43CFCDD3DC27B6CD023BA81B4A8154CE4E084BD4"
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// Dieser Code wurde von einem Tool generiert.
|
||||
|
||||
Binary file not shown.
@@ -1,4 +1,4 @@
|
||||
#pragma checksum "..\..\..\Popup.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "3B7EB3D1BA50C066BF8F11C7D93DA3A53BEEE88D"
|
||||
#pragma checksum "..\..\..\Popup.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "E8BB361697A9B980F7443BA56E1FE22F9F6F77C4"
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// Dieser Code wurde von einem Tool generiert.
|
||||
@@ -42,7 +42,15 @@ namespace ImgurAutoUploader {
|
||||
public partial class Popup : System.Windows.Window, System.Windows.Markup.IComponentConnector {
|
||||
|
||||
|
||||
#line 17 "..\..\..\Popup.xaml"
|
||||
#line 29 "..\..\..\Popup.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Grid grid;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 37 "..\..\..\Popup.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Image imageBox;
|
||||
|
||||
@@ -50,7 +58,15 @@ namespace ImgurAutoUploader {
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 23 "..\..\..\Popup.xaml"
|
||||
#line 38 "..\..\..\Popup.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Label editLabel;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 46 "..\..\..\Popup.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.ProgressBar UploadProgressBar;
|
||||
|
||||
@@ -58,7 +74,7 @@ namespace ImgurAutoUploader {
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 24 "..\..\..\Popup.xaml"
|
||||
#line 47 "..\..\..\Popup.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.TextBlock LinkTextBlock;
|
||||
|
||||
@@ -66,7 +82,7 @@ namespace ImgurAutoUploader {
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 25 "..\..\..\Popup.xaml"
|
||||
#line 48 "..\..\..\Popup.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Button UploadButton;
|
||||
|
||||
@@ -74,7 +90,7 @@ namespace ImgurAutoUploader {
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 26 "..\..\..\Popup.xaml"
|
||||
#line 49 "..\..\..\Popup.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Button SecretButton;
|
||||
|
||||
@@ -112,35 +128,65 @@ namespace ImgurAutoUploader {
|
||||
switch (connectionId)
|
||||
{
|
||||
case 1:
|
||||
this.grid = ((System.Windows.Controls.Grid)(target));
|
||||
|
||||
#line 8 "..\..\..\Popup.xaml"
|
||||
((ImgurAutoUploader.Popup)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);
|
||||
#line 29 "..\..\..\Popup.xaml"
|
||||
this.grid.MouseEnter += new System.Windows.Input.MouseEventHandler(this.Grid_MouseEnter);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
#line 29 "..\..\..\Popup.xaml"
|
||||
this.grid.MouseLeave += new System.Windows.Input.MouseEventHandler(this.Grid_MouseLeave);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 2:
|
||||
this.imageBox = ((System.Windows.Controls.Image)(target));
|
||||
|
||||
#line 35 "..\..\..\Popup.xaml"
|
||||
((System.Windows.Controls.Button)(target)).MouseEnter += new System.Windows.Input.MouseEventHandler(this.EditButton_MouseEnter);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
#line 35 "..\..\..\Popup.xaml"
|
||||
((System.Windows.Controls.Button)(target)).MouseLeave += new System.Windows.Input.MouseEventHandler(this.EditButton_MouseLeave);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
#line 35 "..\..\..\Popup.xaml"
|
||||
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.EditButton_Click);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 3:
|
||||
this.UploadProgressBar = ((System.Windows.Controls.ProgressBar)(target));
|
||||
this.imageBox = ((System.Windows.Controls.Image)(target));
|
||||
return;
|
||||
case 4:
|
||||
this.LinkTextBlock = ((System.Windows.Controls.TextBlock)(target));
|
||||
this.editLabel = ((System.Windows.Controls.Label)(target));
|
||||
return;
|
||||
case 5:
|
||||
this.UploadProgressBar = ((System.Windows.Controls.ProgressBar)(target));
|
||||
return;
|
||||
case 6:
|
||||
this.LinkTextBlock = ((System.Windows.Controls.TextBlock)(target));
|
||||
return;
|
||||
case 7:
|
||||
this.UploadButton = ((System.Windows.Controls.Button)(target));
|
||||
|
||||
#line 25 "..\..\..\Popup.xaml"
|
||||
#line 48 "..\..\..\Popup.xaml"
|
||||
this.UploadButton.Click += new System.Windows.RoutedEventHandler(this.UploadButton_Click);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 6:
|
||||
case 8:
|
||||
this.SecretButton = ((System.Windows.Controls.Button)(target));
|
||||
|
||||
#line 26 "..\..\..\Popup.xaml"
|
||||
#line 49 "..\..\..\Popup.xaml"
|
||||
this.SecretButton.Click += new System.Windows.RoutedEventHandler(this.SecretButton_Click);
|
||||
|
||||
#line default
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#pragma checksum "..\..\..\Popup.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "3B7EB3D1BA50C066BF8F11C7D93DA3A53BEEE88D"
|
||||
#pragma checksum "..\..\..\Popup.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "E8BB361697A9B980F7443BA56E1FE22F9F6F77C4"
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// Dieser Code wurde von einem Tool generiert.
|
||||
@@ -42,7 +42,15 @@ namespace ImgurAutoUploader {
|
||||
public partial class Popup : System.Windows.Window, System.Windows.Markup.IComponentConnector {
|
||||
|
||||
|
||||
#line 17 "..\..\..\Popup.xaml"
|
||||
#line 29 "..\..\..\Popup.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Grid grid;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 37 "..\..\..\Popup.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Image imageBox;
|
||||
|
||||
@@ -50,7 +58,15 @@ namespace ImgurAutoUploader {
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 23 "..\..\..\Popup.xaml"
|
||||
#line 38 "..\..\..\Popup.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Label editLabel;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 46 "..\..\..\Popup.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.ProgressBar UploadProgressBar;
|
||||
|
||||
@@ -58,7 +74,7 @@ namespace ImgurAutoUploader {
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 24 "..\..\..\Popup.xaml"
|
||||
#line 47 "..\..\..\Popup.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.TextBlock LinkTextBlock;
|
||||
|
||||
@@ -66,7 +82,7 @@ namespace ImgurAutoUploader {
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 25 "..\..\..\Popup.xaml"
|
||||
#line 48 "..\..\..\Popup.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Button UploadButton;
|
||||
|
||||
@@ -74,7 +90,7 @@ namespace ImgurAutoUploader {
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 26 "..\..\..\Popup.xaml"
|
||||
#line 49 "..\..\..\Popup.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Button SecretButton;
|
||||
|
||||
@@ -112,35 +128,65 @@ namespace ImgurAutoUploader {
|
||||
switch (connectionId)
|
||||
{
|
||||
case 1:
|
||||
this.grid = ((System.Windows.Controls.Grid)(target));
|
||||
|
||||
#line 8 "..\..\..\Popup.xaml"
|
||||
((ImgurAutoUploader.Popup)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);
|
||||
#line 29 "..\..\..\Popup.xaml"
|
||||
this.grid.MouseEnter += new System.Windows.Input.MouseEventHandler(this.Grid_MouseEnter);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
#line 29 "..\..\..\Popup.xaml"
|
||||
this.grid.MouseLeave += new System.Windows.Input.MouseEventHandler(this.Grid_MouseLeave);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 2:
|
||||
this.imageBox = ((System.Windows.Controls.Image)(target));
|
||||
|
||||
#line 35 "..\..\..\Popup.xaml"
|
||||
((System.Windows.Controls.Button)(target)).MouseEnter += new System.Windows.Input.MouseEventHandler(this.EditButton_MouseEnter);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
#line 35 "..\..\..\Popup.xaml"
|
||||
((System.Windows.Controls.Button)(target)).MouseLeave += new System.Windows.Input.MouseEventHandler(this.EditButton_MouseLeave);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
#line 35 "..\..\..\Popup.xaml"
|
||||
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.EditButton_Click);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 3:
|
||||
this.UploadProgressBar = ((System.Windows.Controls.ProgressBar)(target));
|
||||
this.imageBox = ((System.Windows.Controls.Image)(target));
|
||||
return;
|
||||
case 4:
|
||||
this.LinkTextBlock = ((System.Windows.Controls.TextBlock)(target));
|
||||
this.editLabel = ((System.Windows.Controls.Label)(target));
|
||||
return;
|
||||
case 5:
|
||||
this.UploadProgressBar = ((System.Windows.Controls.ProgressBar)(target));
|
||||
return;
|
||||
case 6:
|
||||
this.LinkTextBlock = ((System.Windows.Controls.TextBlock)(target));
|
||||
return;
|
||||
case 7:
|
||||
this.UploadButton = ((System.Windows.Controls.Button)(target));
|
||||
|
||||
#line 25 "..\..\..\Popup.xaml"
|
||||
#line 48 "..\..\..\Popup.xaml"
|
||||
this.UploadButton.Click += new System.Windows.RoutedEventHandler(this.UploadButton_Click);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 6:
|
||||
case 8:
|
||||
this.SecretButton = ((System.Windows.Controls.Button)(target));
|
||||
|
||||
#line 26 "..\..\..\Popup.xaml"
|
||||
#line 49 "..\..\..\Popup.xaml"
|
||||
this.SecretButton.Click += new System.Windows.RoutedEventHandler(this.SecretButton_Click);
|
||||
|
||||
#line default
|
||||
|
||||
Binary file not shown.
@@ -47,6 +47,10 @@
|
||||
"Imgur.API": {
|
||||
"target": "Package",
|
||||
"version": "[5.0.0, )"
|
||||
},
|
||||
"System.Drawing.Common": {
|
||||
"target": "Package",
|
||||
"version": "[5.0.2, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
|
||||
Binary file not shown.
@@ -0,0 +1,183 @@
|
||||
#pragma checksum "..\..\..\EditWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "A33A005B0CAD3E19619DA9D268603ACEDA9D4257"
|
||||
//------------------------------------------------------------------------------
|
||||
// <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>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using ImgurAutoUploader;
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using System.Windows;
|
||||
using System.Windows.Automation;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Controls.Primitives;
|
||||
using System.Windows.Controls.Ribbon;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Ink;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Markup;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Animation;
|
||||
using System.Windows.Media.Effects;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Media.Media3D;
|
||||
using System.Windows.Media.TextFormatting;
|
||||
using System.Windows.Navigation;
|
||||
using System.Windows.Shapes;
|
||||
using System.Windows.Shell;
|
||||
|
||||
|
||||
namespace ImgurAutoUploader {
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// EditWindow
|
||||
/// </summary>
|
||||
public partial class EditWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
|
||||
|
||||
|
||||
#line 16 "..\..\..\EditWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Image imageBox;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 17 "..\..\..\EditWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.InkCanvas inkCanvas;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 19 "..\..\..\EditWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Ink.DrawingAttributes attribute;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 27 "..\..\..\EditWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.ProgressBar UploadProgressBar;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 28 "..\..\..\EditWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Button SecretButton;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 29 "..\..\..\EditWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Button UploadButton;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
private bool _contentLoaded;
|
||||
|
||||
/// <summary>
|
||||
/// InitializeComponent
|
||||
/// </summary>
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.4.0")]
|
||||
public void InitializeComponent() {
|
||||
if (_contentLoaded) {
|
||||
return;
|
||||
}
|
||||
_contentLoaded = true;
|
||||
System.Uri resourceLocater = new System.Uri("/ImgurAutoUploader;component/editwindow.xaml", System.UriKind.Relative);
|
||||
|
||||
#line 1 "..\..\..\EditWindow.xaml"
|
||||
System.Windows.Application.LoadComponent(this, resourceLocater);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
}
|
||||
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.4.0")]
|
||||
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
|
||||
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
|
||||
switch (connectionId)
|
||||
{
|
||||
case 1:
|
||||
|
||||
#line 8 "..\..\..\EditWindow.xaml"
|
||||
((ImgurAutoUploader.EditWindow)(target)).SizeChanged += new System.Windows.SizeChangedEventHandler(this.Window_SizeChanged);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 2:
|
||||
this.imageBox = ((System.Windows.Controls.Image)(target));
|
||||
return;
|
||||
case 3:
|
||||
this.inkCanvas = ((System.Windows.Controls.InkCanvas)(target));
|
||||
|
||||
#line 17 "..\..\..\EditWindow.xaml"
|
||||
this.inkCanvas.PreviewMouseWheel += new System.Windows.Input.MouseWheelEventHandler(this.InkCanvas_PreviewMouseWheel);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
#line 17 "..\..\..\EditWindow.xaml"
|
||||
this.inkCanvas.PreviewMouseRightButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.inkCanvas_PreviewMouseLeftButtonDown);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
#line 17 "..\..\..\EditWindow.xaml"
|
||||
this.inkCanvas.PreviewMouseRightButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.inkCanvas_PreviewMouseLeftButtonUp);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 4:
|
||||
this.attribute = ((System.Windows.Ink.DrawingAttributes)(target));
|
||||
return;
|
||||
case 5:
|
||||
this.UploadProgressBar = ((System.Windows.Controls.ProgressBar)(target));
|
||||
return;
|
||||
case 6:
|
||||
this.SecretButton = ((System.Windows.Controls.Button)(target));
|
||||
|
||||
#line 28 "..\..\..\EditWindow.xaml"
|
||||
this.SecretButton.Click += new System.Windows.RoutedEventHandler(this.UploadButton_Click);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 7:
|
||||
this.UploadButton = ((System.Windows.Controls.Button)(target));
|
||||
|
||||
#line 29 "..\..\..\EditWindow.xaml"
|
||||
this.UploadButton.Click += new System.Windows.RoutedEventHandler(this.SaveButton_Click);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
}
|
||||
this._contentLoaded = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,183 @@
|
||||
#pragma checksum "..\..\..\EditWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "A33A005B0CAD3E19619DA9D268603ACEDA9D4257"
|
||||
//------------------------------------------------------------------------------
|
||||
// <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>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using ImgurAutoUploader;
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using System.Windows;
|
||||
using System.Windows.Automation;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Controls.Primitives;
|
||||
using System.Windows.Controls.Ribbon;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Ink;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Markup;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Animation;
|
||||
using System.Windows.Media.Effects;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Media.Media3D;
|
||||
using System.Windows.Media.TextFormatting;
|
||||
using System.Windows.Navigation;
|
||||
using System.Windows.Shapes;
|
||||
using System.Windows.Shell;
|
||||
|
||||
|
||||
namespace ImgurAutoUploader {
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// EditWindow
|
||||
/// </summary>
|
||||
public partial class EditWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
|
||||
|
||||
|
||||
#line 16 "..\..\..\EditWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Image imageBox;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 17 "..\..\..\EditWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.InkCanvas inkCanvas;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 19 "..\..\..\EditWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Ink.DrawingAttributes attribute;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 27 "..\..\..\EditWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.ProgressBar UploadProgressBar;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 28 "..\..\..\EditWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Button SecretButton;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 29 "..\..\..\EditWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Button UploadButton;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
private bool _contentLoaded;
|
||||
|
||||
/// <summary>
|
||||
/// InitializeComponent
|
||||
/// </summary>
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.4.0")]
|
||||
public void InitializeComponent() {
|
||||
if (_contentLoaded) {
|
||||
return;
|
||||
}
|
||||
_contentLoaded = true;
|
||||
System.Uri resourceLocater = new System.Uri("/ImgurAutoUploader;component/editwindow.xaml", System.UriKind.Relative);
|
||||
|
||||
#line 1 "..\..\..\EditWindow.xaml"
|
||||
System.Windows.Application.LoadComponent(this, resourceLocater);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
}
|
||||
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.4.0")]
|
||||
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
|
||||
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
|
||||
switch (connectionId)
|
||||
{
|
||||
case 1:
|
||||
|
||||
#line 8 "..\..\..\EditWindow.xaml"
|
||||
((ImgurAutoUploader.EditWindow)(target)).SizeChanged += new System.Windows.SizeChangedEventHandler(this.Window_SizeChanged);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 2:
|
||||
this.imageBox = ((System.Windows.Controls.Image)(target));
|
||||
return;
|
||||
case 3:
|
||||
this.inkCanvas = ((System.Windows.Controls.InkCanvas)(target));
|
||||
|
||||
#line 17 "..\..\..\EditWindow.xaml"
|
||||
this.inkCanvas.PreviewMouseWheel += new System.Windows.Input.MouseWheelEventHandler(this.InkCanvas_PreviewMouseWheel);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
#line 17 "..\..\..\EditWindow.xaml"
|
||||
this.inkCanvas.PreviewMouseRightButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.inkCanvas_PreviewMouseLeftButtonDown);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
#line 17 "..\..\..\EditWindow.xaml"
|
||||
this.inkCanvas.PreviewMouseRightButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.inkCanvas_PreviewMouseLeftButtonUp);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 4:
|
||||
this.attribute = ((System.Windows.Ink.DrawingAttributes)(target));
|
||||
return;
|
||||
case 5:
|
||||
this.UploadProgressBar = ((System.Windows.Controls.ProgressBar)(target));
|
||||
return;
|
||||
case 6:
|
||||
this.SecretButton = ((System.Windows.Controls.Button)(target));
|
||||
|
||||
#line 28 "..\..\..\EditWindow.xaml"
|
||||
this.SecretButton.Click += new System.Windows.RoutedEventHandler(this.UploadButton_Click);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 7:
|
||||
this.UploadButton = ((System.Windows.Controls.Button)(target));
|
||||
|
||||
#line 29 "..\..\..\EditWindow.xaml"
|
||||
this.UploadButton.Click += new System.Windows.RoutedEventHandler(this.SaveButton_Click);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
}
|
||||
this._contentLoaded = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Binary file not shown.
+1
-1
@@ -1 +1 @@
|
||||
37f455910e863702d35eddf2fb362766e9278bf7
|
||||
33a12806f4db3a110f658a52a03ca56aa58e843c
|
||||
|
||||
+5
@@ -24,3 +24,8 @@ C:\Users\David\Google Drive\Programmieren\ImgurAutoUploader\ImgurAutoUploader\ob
|
||||
C:\Users\David\Google Drive\Programmieren\ImgurAutoUploader\ImgurAutoUploader\obj\Release\net5.0-windows\ref\ImgurAutoUploader.dll
|
||||
C:\Users\David\Google Drive\Programmieren\ImgurAutoUploader\ImgurAutoUploader\obj\Release\net5.0-windows\ImgurAutoUploader.pdb
|
||||
C:\Users\David\Google Drive\Programmieren\ImgurAutoUploader\ImgurAutoUploader\obj\Release\net5.0-windows\ImgurAutoUploader.genruntimeconfig.cache
|
||||
C:\Users\David\Google Drive\Programmieren\ImgurAutoUploader\ImgurAutoUploader\obj\Release\net5.0-windows\EditWindow.g.cs
|
||||
C:\Users\David\Google Drive\Programmieren\ImgurAutoUploader\ImgurAutoUploader\obj\Release\net5.0-windows\EditWindow.baml
|
||||
C:\Users\David\Google Drive\Programmieren\ImgurAutoUploader\ImgurAutoUploader\bin\Release\net5.0-windows\System.Drawing.Common.dll
|
||||
C:\Users\David\Google Drive\Programmieren\ImgurAutoUploader\ImgurAutoUploader\bin\Release\net5.0-windows\runtimes\unix\lib\netcoreapp3.0\System.Drawing.Common.dll
|
||||
C:\Users\David\Google Drive\Programmieren\ImgurAutoUploader\ImgurAutoUploader\bin\Release\net5.0-windows\runtimes\win\lib\netcoreapp3.0\System.Drawing.Common.dll
|
||||
|
||||
BIN
Binary file not shown.
@@ -17,6 +17,51 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.NETCore.Platforms/5.0.0": {},
|
||||
"Microsoft.Win32.SystemEvents/5.0.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "5.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.20.51904"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.20.51904"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Drawing.Common/5.0.2": {
|
||||
"dependencies": {
|
||||
"Microsoft.Win32.SystemEvents": "5.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netcoreapp3.0/System.Drawing.Common.dll": {
|
||||
"assemblyVersion": "5.0.0.2",
|
||||
"fileVersion": "5.0.421.11614"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
|
||||
"rid": "unix",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "5.0.0.2",
|
||||
"fileVersion": "5.0.421.11614"
|
||||
},
|
||||
"runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "5.0.0.2",
|
||||
"fileVersion": "5.0.421.11614"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Text.Json/4.7.2": {
|
||||
"runtime": {
|
||||
"lib/netcoreapp3.0/System.Text.Json.dll": {
|
||||
@@ -35,6 +80,27 @@
|
||||
"path": "imgur.api/5.0.0",
|
||||
"hashPath": "imgur.api.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.NETCore.Platforms/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
|
||||
"path": "microsoft.netcore.platforms/5.0.0",
|
||||
"hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Win32.SystemEvents/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==",
|
||||
"path": "microsoft.win32.systemevents/5.0.0",
|
||||
"hashPath": "microsoft.win32.systemevents.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"System.Drawing.Common/5.0.2": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-rvr/M1WPf24ljpvvrVd74+NdjRUJu1bBkspkZcnzSZnmAUQWSvanlQ0k/hVHk+cHufZbZfu7vOh/vYc0q5Uu/A==",
|
||||
"path": "system.drawing.common/5.0.2",
|
||||
"hashPath": "system.drawing.common.5.0.2.nupkg.sha512"
|
||||
},
|
||||
"System.Text.Json/4.7.2": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -10,11 +10,11 @@ none
|
||||
false
|
||||
TRACE;RELEASE;NET;NET5_0;NETCOREAPP
|
||||
C:\Users\David\Google Drive\Programmieren\ImgurAutoUploader\ImgurAutoUploader\App.xaml
|
||||
2-519363072
|
||||
3721772035
|
||||
|
||||
4-587503363
|
||||
1941800250196
|
||||
MainWindow.xaml;Popup.xaml;
|
||||
61652257815
|
||||
195-2131317905
|
||||
EditWindow.xaml;MainWindow.xaml;Popup.xaml;
|
||||
|
||||
False
|
||||
|
||||
|
||||
+4
-4
@@ -10,11 +10,11 @@ none
|
||||
false
|
||||
TRACE;RELEASE;NET;NET5_0;NETCOREAPP
|
||||
C:\Users\David\Google Drive\Programmieren\ImgurAutoUploader\ImgurAutoUploader\App.xaml
|
||||
2-519363072
|
||||
3721772035
|
||||
|
||||
6-810495982
|
||||
1941800250196
|
||||
MainWindow.xaml;Popup.xaml;
|
||||
81429265196
|
||||
195-2131317905
|
||||
EditWindow.xaml;MainWindow.xaml;Popup.xaml;
|
||||
|
||||
True
|
||||
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
|
||||
|
||||
FC:\Users\David\Google Drive\Programmieren\ImgurAutoUploader\ImgurAutoUploader\MainWindow.xaml;;
|
||||
FC:\Users\David\Google Drive\Programmieren\ImgurAutoUploader\ImgurAutoUploader\Popup.xaml;;
|
||||
FC:\Users\David\Google Drive\Programmieren\ImgurAutoUploader\ImgurAutoUploader\EditWindow.xaml;;
|
||||
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
|
||||
|
||||
FC:\Users\David\Google Drive\Programmieren\ImgurAutoUploader\ImgurAutoUploader\EditWindow.xaml;;
|
||||
FC:\Users\David\Google Drive\Programmieren\ImgurAutoUploader\ImgurAutoUploader\MainWindow.xaml;;
|
||||
FC:\Users\David\Google Drive\Programmieren\ImgurAutoUploader\ImgurAutoUploader\Popup.xaml;;
|
||||
|
||||
|
||||
Binary file not shown.
@@ -1,4 +1,4 @@
|
||||
#pragma checksum "..\..\..\Popup.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "D0D0D35B7C392FD6713165DBA7F87550246786D6"
|
||||
#pragma checksum "..\..\..\Popup.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "E8BB361697A9B980F7443BA56E1FE22F9F6F77C4"
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// Dieser Code wurde von einem Tool generiert.
|
||||
@@ -42,7 +42,7 @@ namespace ImgurAutoUploader {
|
||||
public partial class Popup : System.Windows.Window, System.Windows.Markup.IComponentConnector {
|
||||
|
||||
|
||||
#line 14 "..\..\..\Popup.xaml"
|
||||
#line 29 "..\..\..\Popup.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Grid grid;
|
||||
|
||||
@@ -50,7 +50,7 @@ namespace ImgurAutoUploader {
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 19 "..\..\..\Popup.xaml"
|
||||
#line 37 "..\..\..\Popup.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Image imageBox;
|
||||
|
||||
@@ -58,7 +58,15 @@ namespace ImgurAutoUploader {
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 25 "..\..\..\Popup.xaml"
|
||||
#line 38 "..\..\..\Popup.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Label editLabel;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 46 "..\..\..\Popup.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.ProgressBar UploadProgressBar;
|
||||
|
||||
@@ -66,7 +74,7 @@ namespace ImgurAutoUploader {
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 26 "..\..\..\Popup.xaml"
|
||||
#line 47 "..\..\..\Popup.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.TextBlock LinkTextBlock;
|
||||
|
||||
@@ -74,7 +82,7 @@ namespace ImgurAutoUploader {
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 27 "..\..\..\Popup.xaml"
|
||||
#line 48 "..\..\..\Popup.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Button UploadButton;
|
||||
|
||||
@@ -82,7 +90,7 @@ namespace ImgurAutoUploader {
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 28 "..\..\..\Popup.xaml"
|
||||
#line 49 "..\..\..\Popup.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Button SecretButton;
|
||||
|
||||
@@ -120,25 +128,37 @@ namespace ImgurAutoUploader {
|
||||
switch (connectionId)
|
||||
{
|
||||
case 1:
|
||||
|
||||
#line 8 "..\..\..\Popup.xaml"
|
||||
((ImgurAutoUploader.Popup)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 2:
|
||||
this.grid = ((System.Windows.Controls.Grid)(target));
|
||||
|
||||
#line 14 "..\..\..\Popup.xaml"
|
||||
#line 29 "..\..\..\Popup.xaml"
|
||||
this.grid.MouseEnter += new System.Windows.Input.MouseEventHandler(this.Grid_MouseEnter);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
#line 14 "..\..\..\Popup.xaml"
|
||||
#line 29 "..\..\..\Popup.xaml"
|
||||
this.grid.MouseLeave += new System.Windows.Input.MouseEventHandler(this.Grid_MouseLeave);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 2:
|
||||
|
||||
#line 35 "..\..\..\Popup.xaml"
|
||||
((System.Windows.Controls.Button)(target)).MouseEnter += new System.Windows.Input.MouseEventHandler(this.EditButton_MouseEnter);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
#line 35 "..\..\..\Popup.xaml"
|
||||
((System.Windows.Controls.Button)(target)).MouseLeave += new System.Windows.Input.MouseEventHandler(this.EditButton_MouseLeave);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
#line 35 "..\..\..\Popup.xaml"
|
||||
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.EditButton_Click);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
@@ -146,24 +166,27 @@ namespace ImgurAutoUploader {
|
||||
this.imageBox = ((System.Windows.Controls.Image)(target));
|
||||
return;
|
||||
case 4:
|
||||
this.UploadProgressBar = ((System.Windows.Controls.ProgressBar)(target));
|
||||
this.editLabel = ((System.Windows.Controls.Label)(target));
|
||||
return;
|
||||
case 5:
|
||||
this.LinkTextBlock = ((System.Windows.Controls.TextBlock)(target));
|
||||
this.UploadProgressBar = ((System.Windows.Controls.ProgressBar)(target));
|
||||
return;
|
||||
case 6:
|
||||
this.LinkTextBlock = ((System.Windows.Controls.TextBlock)(target));
|
||||
return;
|
||||
case 7:
|
||||
this.UploadButton = ((System.Windows.Controls.Button)(target));
|
||||
|
||||
#line 27 "..\..\..\Popup.xaml"
|
||||
#line 48 "..\..\..\Popup.xaml"
|
||||
this.UploadButton.Click += new System.Windows.RoutedEventHandler(this.UploadButton_Click);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 7:
|
||||
case 8:
|
||||
this.SecretButton = ((System.Windows.Controls.Button)(target));
|
||||
|
||||
#line 28 "..\..\..\Popup.xaml"
|
||||
#line 49 "..\..\..\Popup.xaml"
|
||||
this.SecretButton.Click += new System.Windows.RoutedEventHandler(this.SecretButton_Click);
|
||||
|
||||
#line default
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#pragma checksum "..\..\..\Popup.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "D0D0D35B7C392FD6713165DBA7F87550246786D6"
|
||||
#pragma checksum "..\..\..\Popup.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "E8BB361697A9B980F7443BA56E1FE22F9F6F77C4"
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// Dieser Code wurde von einem Tool generiert.
|
||||
@@ -42,7 +42,7 @@ namespace ImgurAutoUploader {
|
||||
public partial class Popup : System.Windows.Window, System.Windows.Markup.IComponentConnector {
|
||||
|
||||
|
||||
#line 14 "..\..\..\Popup.xaml"
|
||||
#line 29 "..\..\..\Popup.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Grid grid;
|
||||
|
||||
@@ -50,7 +50,7 @@ namespace ImgurAutoUploader {
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 19 "..\..\..\Popup.xaml"
|
||||
#line 37 "..\..\..\Popup.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Image imageBox;
|
||||
|
||||
@@ -58,7 +58,15 @@ namespace ImgurAutoUploader {
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 25 "..\..\..\Popup.xaml"
|
||||
#line 38 "..\..\..\Popup.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Label editLabel;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 46 "..\..\..\Popup.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.ProgressBar UploadProgressBar;
|
||||
|
||||
@@ -66,7 +74,7 @@ namespace ImgurAutoUploader {
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 26 "..\..\..\Popup.xaml"
|
||||
#line 47 "..\..\..\Popup.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.TextBlock LinkTextBlock;
|
||||
|
||||
@@ -74,7 +82,7 @@ namespace ImgurAutoUploader {
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 27 "..\..\..\Popup.xaml"
|
||||
#line 48 "..\..\..\Popup.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Button UploadButton;
|
||||
|
||||
@@ -82,7 +90,7 @@ namespace ImgurAutoUploader {
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 28 "..\..\..\Popup.xaml"
|
||||
#line 49 "..\..\..\Popup.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Button SecretButton;
|
||||
|
||||
@@ -120,25 +128,37 @@ namespace ImgurAutoUploader {
|
||||
switch (connectionId)
|
||||
{
|
||||
case 1:
|
||||
|
||||
#line 8 "..\..\..\Popup.xaml"
|
||||
((ImgurAutoUploader.Popup)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 2:
|
||||
this.grid = ((System.Windows.Controls.Grid)(target));
|
||||
|
||||
#line 14 "..\..\..\Popup.xaml"
|
||||
#line 29 "..\..\..\Popup.xaml"
|
||||
this.grid.MouseEnter += new System.Windows.Input.MouseEventHandler(this.Grid_MouseEnter);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
#line 14 "..\..\..\Popup.xaml"
|
||||
#line 29 "..\..\..\Popup.xaml"
|
||||
this.grid.MouseLeave += new System.Windows.Input.MouseEventHandler(this.Grid_MouseLeave);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 2:
|
||||
|
||||
#line 35 "..\..\..\Popup.xaml"
|
||||
((System.Windows.Controls.Button)(target)).MouseEnter += new System.Windows.Input.MouseEventHandler(this.EditButton_MouseEnter);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
#line 35 "..\..\..\Popup.xaml"
|
||||
((System.Windows.Controls.Button)(target)).MouseLeave += new System.Windows.Input.MouseEventHandler(this.EditButton_MouseLeave);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
#line 35 "..\..\..\Popup.xaml"
|
||||
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.EditButton_Click);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
@@ -146,24 +166,27 @@ namespace ImgurAutoUploader {
|
||||
this.imageBox = ((System.Windows.Controls.Image)(target));
|
||||
return;
|
||||
case 4:
|
||||
this.UploadProgressBar = ((System.Windows.Controls.ProgressBar)(target));
|
||||
this.editLabel = ((System.Windows.Controls.Label)(target));
|
||||
return;
|
||||
case 5:
|
||||
this.LinkTextBlock = ((System.Windows.Controls.TextBlock)(target));
|
||||
this.UploadProgressBar = ((System.Windows.Controls.ProgressBar)(target));
|
||||
return;
|
||||
case 6:
|
||||
this.LinkTextBlock = ((System.Windows.Controls.TextBlock)(target));
|
||||
return;
|
||||
case 7:
|
||||
this.UploadButton = ((System.Windows.Controls.Button)(target));
|
||||
|
||||
#line 27 "..\..\..\Popup.xaml"
|
||||
#line 48 "..\..\..\Popup.xaml"
|
||||
this.UploadButton.Click += new System.Windows.RoutedEventHandler(this.UploadButton_Click);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 7:
|
||||
case 8:
|
||||
this.SecretButton = ((System.Windows.Controls.Button)(target));
|
||||
|
||||
#line 28 "..\..\..\Popup.xaml"
|
||||
#line 49 "..\..\..\Popup.xaml"
|
||||
this.SecretButton.Click += new System.Windows.RoutedEventHandler(this.SecretButton_Click);
|
||||
|
||||
#line default
|
||||
|
||||
Binary file not shown.
@@ -14,6 +14,55 @@
|
||||
"lib/netstandard2.0/Imgur.API.dll": {}
|
||||
}
|
||||
},
|
||||
"Microsoft.NETCore.Platforms/5.0.0": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/netstandard1.0/_._": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard1.0/_._": {}
|
||||
}
|
||||
},
|
||||
"Microsoft.Win32.SystemEvents/5.0.0": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "5.0.0"
|
||||
},
|
||||
"compile": {
|
||||
"ref/netstandard2.0/_._": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
|
||||
"assetType": "runtime",
|
||||
"rid": "win"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Drawing.Common/5.0.2": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"Microsoft.Win32.SystemEvents": "5.0.0"
|
||||
},
|
||||
"compile": {
|
||||
"ref/netcoreapp3.0/System.Drawing.Common.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netcoreapp3.0/System.Drawing.Common.dll": {}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
|
||||
"assetType": "runtime",
|
||||
"rid": "unix"
|
||||
},
|
||||
"runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
|
||||
"assetType": "runtime",
|
||||
"rid": "win"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Text.Json/4.7.2": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
@@ -41,6 +90,94 @@
|
||||
"lib/netstandard2.0/Imgur.API.xml"
|
||||
]
|
||||
},
|
||||
"Microsoft.NETCore.Platforms/5.0.0": {
|
||||
"sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
|
||||
"type": "package",
|
||||
"path": "microsoft.netcore.platforms/5.0.0",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"Icon.png",
|
||||
"LICENSE.TXT",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"lib/netstandard1.0/_._",
|
||||
"microsoft.netcore.platforms.5.0.0.nupkg.sha512",
|
||||
"microsoft.netcore.platforms.nuspec",
|
||||
"runtime.json",
|
||||
"useSharedDesignerContext.txt",
|
||||
"version.txt"
|
||||
]
|
||||
},
|
||||
"Microsoft.Win32.SystemEvents/5.0.0": {
|
||||
"sha512": "Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==",
|
||||
"type": "package",
|
||||
"path": "microsoft.win32.systemevents/5.0.0",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"Icon.png",
|
||||
"LICENSE.TXT",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"lib/net461/Microsoft.Win32.SystemEvents.dll",
|
||||
"lib/net461/Microsoft.Win32.SystemEvents.xml",
|
||||
"lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
|
||||
"lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
|
||||
"microsoft.win32.systemevents.5.0.0.nupkg.sha512",
|
||||
"microsoft.win32.systemevents.nuspec",
|
||||
"ref/net461/Microsoft.Win32.SystemEvents.dll",
|
||||
"ref/net461/Microsoft.Win32.SystemEvents.xml",
|
||||
"ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
|
||||
"ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
|
||||
"runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
|
||||
"runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
|
||||
"runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
|
||||
"runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
|
||||
"useSharedDesignerContext.txt",
|
||||
"version.txt"
|
||||
]
|
||||
},
|
||||
"System.Drawing.Common/5.0.2": {
|
||||
"sha512": "rvr/M1WPf24ljpvvrVd74+NdjRUJu1bBkspkZcnzSZnmAUQWSvanlQ0k/hVHk+cHufZbZfu7vOh/vYc0q5Uu/A==",
|
||||
"type": "package",
|
||||
"path": "system.drawing.common/5.0.2",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"Icon.png",
|
||||
"LICENSE.TXT",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"lib/MonoAndroid10/_._",
|
||||
"lib/MonoTouch10/_._",
|
||||
"lib/net461/System.Drawing.Common.dll",
|
||||
"lib/netcoreapp3.0/System.Drawing.Common.dll",
|
||||
"lib/netcoreapp3.0/System.Drawing.Common.xml",
|
||||
"lib/netstandard2.0/System.Drawing.Common.dll",
|
||||
"lib/xamarinios10/_._",
|
||||
"lib/xamarinmac20/_._",
|
||||
"lib/xamarintvos10/_._",
|
||||
"lib/xamarinwatchos10/_._",
|
||||
"ref/MonoAndroid10/_._",
|
||||
"ref/MonoTouch10/_._",
|
||||
"ref/net461/System.Drawing.Common.dll",
|
||||
"ref/netcoreapp3.0/System.Drawing.Common.dll",
|
||||
"ref/netcoreapp3.0/System.Drawing.Common.xml",
|
||||
"ref/netstandard2.0/System.Drawing.Common.dll",
|
||||
"ref/xamarinios10/_._",
|
||||
"ref/xamarinmac20/_._",
|
||||
"ref/xamarintvos10/_._",
|
||||
"ref/xamarinwatchos10/_._",
|
||||
"runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
|
||||
"runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
|
||||
"runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
|
||||
"runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
|
||||
"runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
|
||||
"runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
|
||||
"system.drawing.common.5.0.2.nupkg.sha512",
|
||||
"system.drawing.common.nuspec",
|
||||
"useSharedDesignerContext.txt",
|
||||
"version.txt"
|
||||
]
|
||||
},
|
||||
"System.Text.Json/4.7.2": {
|
||||
"sha512": "TcMd95wcrubm9nHvJEQs70rC0H/8omiSGGpU4FQ/ZA1URIqD4pjmFJh2Mfv1yH1eHgJDWTi2hMDXwTET+zOOyg==",
|
||||
"type": "package",
|
||||
@@ -66,7 +203,8 @@
|
||||
},
|
||||
"projectFileDependencyGroups": {
|
||||
"net5.0-windows7.0": [
|
||||
"Imgur.API >= 5.0.0"
|
||||
"Imgur.API >= 5.0.0",
|
||||
"System.Drawing.Common >= 5.0.2"
|
||||
]
|
||||
},
|
||||
"packageFolders": {
|
||||
@@ -116,6 +254,10 @@
|
||||
"Imgur.API": {
|
||||
"target": "Package",
|
||||
"version": "[5.0.0, )"
|
||||
},
|
||||
"System.Drawing.Common": {
|
||||
"target": "Package",
|
||||
"version": "[5.0.2, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
|
||||
@@ -1,10 +1,13 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "kH6crkMnIPIkOpOTY8uWvx3cZ9IJirJg/xLxdTcOXhO4UFRQDkDcED1cVuOP3gWjber5kSM2uE7g1UPh+J9dyA==",
|
||||
"dgSpecHash": "P11Fpj+M8GiIJg7mVspcXTLQaAboe7ziRZQLLFYpipr4Okl5Td5YYHyAewkCb6ax94RJzeSEglS5CUO4TZ6C7Q==",
|
||||
"success": true,
|
||||
"projectFilePath": "C:\\Users\\David\\Google Drive\\Programmieren\\ImgurAutoUploader\\ImgurAutoUploader\\ImgurAutoUploader.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"C:\\Users\\David\\.nuget\\packages\\imgur.api\\5.0.0\\imgur.api.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\David\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\David\\.nuget\\packages\\microsoft.win32.systemevents\\5.0.0\\microsoft.win32.systemevents.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\David\\.nuget\\packages\\system.drawing.common\\5.0.2\\system.drawing.common.5.0.2.nupkg.sha512",
|
||||
"C:\\Users\\David\\.nuget\\packages\\system.text.json\\4.7.2\\system.text.json.4.7.2.nupkg.sha512"
|
||||
],
|
||||
"logs": []
|
||||
|
||||
Reference in New Issue
Block a user