commit 2321afafb90f5ef1d847201c2e235dd577feecc0 Author: Dhanveer Ramnauth Date: Mon May 2 22:17:39 2022 +1000 Init diff --git a/.vs/ERD/DesignTimeBuild/.dtbcache.v2 b/.vs/ERD/DesignTimeBuild/.dtbcache.v2 new file mode 100644 index 0000000..98bc344 Binary files /dev/null and b/.vs/ERD/DesignTimeBuild/.dtbcache.v2 differ diff --git a/.vs/ERD/v17/.futdcache.v1 b/.vs/ERD/v17/.futdcache.v1 new file mode 100644 index 0000000..8c750ec Binary files /dev/null and b/.vs/ERD/v17/.futdcache.v1 differ diff --git a/.vs/ERD/v17/.suo b/.vs/ERD/v17/.suo new file mode 100644 index 0000000..095626c Binary files /dev/null and b/.vs/ERD/v17/.suo differ diff --git a/ERD.sln b/ERD.sln new file mode 100644 index 0000000..40c58cb --- /dev/null +++ b/ERD.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.1.32328.378 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ERD", "ERD\ERD.csproj", "{E49F17A2-F0D9-43D4-BA01-40F8A93539BF}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {E49F17A2-F0D9-43D4-BA01-40F8A93539BF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E49F17A2-F0D9-43D4-BA01-40F8A93539BF}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E49F17A2-F0D9-43D4-BA01-40F8A93539BF}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E49F17A2-F0D9-43D4-BA01-40F8A93539BF}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {F876A936-A4B1-475B-92FE-E7565F1134DC} + EndGlobalSection +EndGlobal diff --git a/ERD/App.xaml b/ERD/App.xaml new file mode 100644 index 0000000..a07043d --- /dev/null +++ b/ERD/App.xaml @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ERD/App.xaml.cs b/ERD/App.xaml.cs new file mode 100644 index 0000000..9cc2ace --- /dev/null +++ b/ERD/App.xaml.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Data; +using System.Linq; +using System.Threading.Tasks; +using System.Windows; + +namespace ERD +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/ERD/AssemblyInfo.cs b/ERD/AssemblyInfo.cs new file mode 100644 index 0000000..8b5504e --- /dev/null +++ b/ERD/AssemblyInfo.cs @@ -0,0 +1,10 @@ +using System.Windows; + +[assembly: ThemeInfo( + ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located + //(used if a resource is not found in the page, + // or application resource dictionaries) + ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located + //(used if a resource is not found in the page, + // app, or any theme specific resource dictionaries) +)] diff --git a/ERD/Components/EntityCard.xaml b/ERD/Components/EntityCard.xaml new file mode 100644 index 0000000..0cbff33 --- /dev/null +++ b/ERD/Components/EntityCard.xaml @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ERD/Components/EntityCard.xaml.cs b/ERD/Components/EntityCard.xaml.cs new file mode 100644 index 0000000..3fb42e4 --- /dev/null +++ b/ERD/Components/EntityCard.xaml.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; + +namespace ERD.Components +{ + /// + /// Interaction logic for EntityCard.xaml + /// + public partial class EntityCard : UserControl + { + public EntityCard() + { + InitializeComponent(); + } + } +} diff --git a/ERD/Components/ellipse.xaml b/ERD/Components/ellipse.xaml new file mode 100644 index 0000000..2c86128 --- /dev/null +++ b/ERD/Components/ellipse.xaml @@ -0,0 +1,15 @@ + + + diff --git a/ERD/Components/ellipse.xaml.cs b/ERD/Components/ellipse.xaml.cs new file mode 100644 index 0000000..5c2cb2c --- /dev/null +++ b/ERD/Components/ellipse.xaml.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; + +namespace ERD.Components +{ + /// + /// Interaction logic for ellipse.xaml + /// + public partial class ellipse : UserControl + { + public ellipse() + { + InitializeComponent(); + } + } +} diff --git a/ERD/Diagramming Logic/CanvasHandler.cs b/ERD/Diagramming Logic/CanvasHandler.cs new file mode 100644 index 0000000..78656ac --- /dev/null +++ b/ERD/Diagramming Logic/CanvasHandler.cs @@ -0,0 +1,38 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; + +namespace ERD.Diagramming_Logic +{ + + internal class CanvasHandler + { + public MainWindow window; + public CanvasHandler(MainWindow window) + { + this.window = window; + } + + /// + /// When the canvas is right clicked: + /// Gives options for what shape the user wants to insert + /// + public void OnRightClick() + { + new InsertElementMenu(this); + } + + + } +} diff --git a/ERD/Diagramming Logic/Elements/Element.cs b/ERD/Diagramming Logic/Elements/Element.cs new file mode 100644 index 0000000..a70f3a7 --- /dev/null +++ b/ERD/Diagramming Logic/Elements/Element.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Input; + +namespace ERD.Diagramming_Logic.Elements +{ + internal abstract class Element + { + protected CanvasHandler Handler; + protected Canvas canvas; + + protected Element(CanvasHandler handler) + { + Handler = handler; + canvas = Handler.window.DrawingCanvas; + } + + + public abstract string GetMenuHeader(); + + public abstract void CreateElement(object sender, RoutedEventArgs e); + } +} diff --git a/ERD/Diagramming Logic/Elements/RectangleElement.cs b/ERD/Diagramming Logic/Elements/RectangleElement.cs new file mode 100644 index 0000000..ef5d74d --- /dev/null +++ b/ERD/Diagramming Logic/Elements/RectangleElement.cs @@ -0,0 +1,135 @@ +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Linq; +using System.Net.Mime; +using System.Text; +using System.Threading.Tasks; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Controls.Primitives; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Shapes; + +namespace ERD.Diagramming_Logic.Elements +{ + internal class RectangleElement : Element + { + public override string GetMenuHeader() + { + return this.GetType().Name; + } + + public override void CreateElement(object sender, RoutedEventArgs e) + { + TextBox rect = new TextBox() + { + Height = 150, + Width = 150, + //Stroke = Brushes.Black, + //StrokeThickness = 5, + //Fill = Brushes.Red + }; + + + + RepeatButton repeatButton = new RepeatButton() + { + Height = 150, + Width = 150, + Background = Brushes.Blue, + Delay = 500, + Interval = 1 + }; + + repeatButton.Cursor = Cursors.SizeAll; + + repeatButton.Content = rect; + + repeatButton.Tag = "R" + (canvas.Children.Count - 1).ToString(); + rect.MouseLeave += UnsetReadOnly; + rect.MouseMove += SetReadOnly; + Trace.WriteLine($"It's {(repeatButton.ActualWidth / 2)}"); + Canvas.SetLeft(repeatButton, (canvas.ActualWidth / 2) - (repeatButton.Width / 2)); + Canvas.SetTop(repeatButton, (canvas.ActualHeight / 2) - (repeatButton.Height / 2)); + //repeatButton.Click += Holding; + repeatButton.MouseMove += Holding; + canvas.Children.Add(repeatButton); + + + + } + + private void SetReadOnly(object sender, MouseEventArgs e) + { + if (!Keyboard.Modifiers.HasFlag(ModifierKeys.Control)) return; + TextBox box = sender as TextBox; + box.Cursor = Cursors.SizeAll; + box.Background = Brushes.LightBlue; + box.Focusable = false; + } + + private void UnsetReadOnly(object sender, MouseEventArgs e) + { + TextBox box = sender as TextBox; + box.IsReadOnly = false; + box.Background = Brushes.White; + box.Cursor = Cursors.IBeam; + box.Focusable = true; + } + + private Point mousePosition, objectPosition; + + private void Holding(object sender, RoutedEventArgs e) + { + if (!Keyboard.Modifiers.HasFlag(ModifierKeys.Control)) return; + var button = sender as RepeatButton; + if (mousePosition.X == 0 && objectPosition.X == 0) + { + mousePosition = Handler.window.mousePoint; + return; + } + + var newMousePos = Handler.window.mousePoint; + + var delta = newMousePos - mousePosition; + objectPosition.X = Canvas.GetLeft(button) + delta.X; + objectPosition.Y = Canvas.GetTop(button) + delta.Y; + + + Canvas.SetLeft(button, objectPosition.X); + Canvas.SetTop(button, objectPosition.Y); + + mousePosition.X = 0; + objectPosition.X = 0; + } + + + private void OnHold(object sender, MouseButtonEventArgs e) + { + + /* + Point dragStartPoint, objectStartLocation; + Trace.WriteLine("Nigger"); + var r = sender as Rectangle ?? throw new InvalidOperationException(); + + dragStartPoint.X = e.GetPosition(Handler.window).X; + dragStartPoint.Y = e.GetPosition(Handler.window).Y; + + objectStartLocation.X = Canvas.GetLeft(r); + objectStartLocation.Y = Canvas.GetTop(r); + + double deltaX = Handler.window.mousePoint.X - dragStartPoint.X; + double deltaY = Handler.window.mousePoint.Y - dragStartPoint.Y;*/ + + + } + + public RectangleElement(CanvasHandler handler) : base(handler) + { + + } + + } +} diff --git a/ERD/Diagramming Logic/InsertElementMenu.cs b/ERD/Diagramming Logic/InsertElementMenu.cs new file mode 100644 index 0000000..4ec3ab6 --- /dev/null +++ b/ERD/Diagramming Logic/InsertElementMenu.cs @@ -0,0 +1,60 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Controls; +using ERD.Diagramming_Logic.Elements; + +namespace ERD.Diagramming_Logic +{ + + internal class InsertElementMenu + { + private readonly CanvasHandler _handler; + private readonly ContextMenu _contextMenu; + public InsertElementMenu(CanvasHandler handler) + { + _handler = handler; + _contextMenu = new ContextMenu(); + InitializeMenu(); + } + + /// + /// Called in constructor to initialize the menu + /// + private void InitializeMenu() + { + _contextMenu.Placement = System.Windows.Controls.Primitives.PlacementMode.MousePoint; + AssignMenuItems(); + _contextMenu.IsOpen = true; + } + + /// + /// Called when initializing to assign all elements to the menu + /// + private void AssignMenuItems() + { + var elements = GetElements(); + foreach (var element in elements) + { + var item = new MenuItem() { Header = element.GetMenuHeader() }; + item.Click += element.CreateElement; + _contextMenu.Items.Add(item); + } + } + + /// + /// Gets all elements used in the assembly. Used when assigning the menu. + /// + private IEnumerable GetElements() + { + var elementType = typeof(Element); + IEnumerable elements = this.GetType().Assembly.GetTypes() + .Where(p => elementType.IsAssignableFrom(p) && !p.IsAbstract) + .Select(r => Activator.CreateInstance(r, _handler) as Element)!; + return elements; + } + } +} diff --git a/ERD/ERD.csproj b/ERD/ERD.csproj new file mode 100644 index 0000000..0f40828 --- /dev/null +++ b/ERD/ERD.csproj @@ -0,0 +1,10 @@ + + + + WinExe + net5.0-windows + enable + true + + + diff --git a/ERD/ERD.csproj.DotSettings.user b/ERD/ERD.csproj.DotSettings.user new file mode 100644 index 0000000..40072e5 --- /dev/null +++ b/ERD/ERD.csproj.DotSettings.user @@ -0,0 +1,4 @@ + + + + Components\MainWindow.xaml \ No newline at end of file diff --git a/ERD/ERD.csproj.user b/ERD/ERD.csproj.user new file mode 100644 index 0000000..172f3d0 --- /dev/null +++ b/ERD/ERD.csproj.user @@ -0,0 +1,23 @@ + + + + + + Code + + + Code + + + + + Designer + + + Designer + + + Designer + + + \ No newline at end of file diff --git a/ERD/MainWindow.xaml b/ERD/MainWindow.xaml new file mode 100644 index 0000000..0b48619 --- /dev/null +++ b/ERD/MainWindow.xaml @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ERD/MainWindow.xaml.cs b/ERD/MainWindow.xaml.cs new file mode 100644 index 0000000..40246a1 --- /dev/null +++ b/ERD/MainWindow.xaml.cs @@ -0,0 +1,259 @@ +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Linq; +using System.Net.Mime; +using System.Text; +using System.Threading.Tasks; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Controls.Primitives; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; +using ERD.Components; +using ERD.Diagramming_Logic; + +namespace ERD +{ + /// + /// Interaction logic for MainWindow.xaml + /// + public partial class MainWindow : Window + { + private readonly CanvasHandler _handler; + public Point mousePoint; + public static Canvas mainCanvas; + + + public void NewEntityCard() + { + var entity = new EntityCard(); + + mainCanvas.Children.Add(entity); + Canvas.SetLeft(entity, (mainCanvas.ActualWidth / 2) - (entity.ActualWidth / 2)); + Canvas.SetTop(entity, (mainCanvas.ActualHeight / 2) - (entity.ActualWidth / 2)); + } + + public MainWindow() + { + _handler = new CanvasHandler(this); + InitializeComponent(); + } + + private void DrawingCanvas_PreviewMouseRightButtonUp(object sender, MouseButtonEventArgs e) + { + //_handler.OnRightClick(); + } + + private void DrawingCanvas_OnPreviewMouseMove(object sender, MouseEventArgs e) + { + mousePoint.X = e.GetPosition(this).X; + mousePoint.Y = e.GetPosition(this).Y; + } + + private void UIElement_OnMouseMove(object sender, MouseEventArgs e) + { + if (!Keyboard.Modifiers.HasFlag(ModifierKeys.Control)) return; + TextBox box = sender as TextBox; + box.Cursor = Cursors.SizeAll; + box.Background = Brushes.LightBlue; + box.Focusable = false; + } + + private void DrawingCanvas_OnMouseDown(object sender, MouseButtonEventArgs e) + { + Entity.Focus(); + } + + private void Unmoveable(object sender, RoutedEventArgs e) + { + + } + + private void Moveable(object sender, KeyEventArgs e) + { + + } + + private void KeyPressed(object sender, KeyEventArgs e) + { + Grid grid = Entity.Content as Grid; + + + switch (e.Key) + { + case Key.Multiply: + { + NewEntityCard(); + break; + } + case Key.Add: + { + for (int i = 0; i < grid.Children.Count; i++) + { + UIElement element = grid.Children[i]; + if (element.GetType() == typeof(TextBox)) + { + TextBox tbox = element as TextBox; + if (tbox.IsMouseOver) + { + Entity.Focus(); + tbox.FontSize += 2; + } + } + } + + break; + } + case Key.Subtract: + { + for (int i = 0; i < grid.Children.Count; i++) + { + UIElement element = grid.Children[i]; + if (element.GetType() == typeof(TextBox)) + { + TextBox tbox = element as TextBox; + if (tbox.IsMouseOver) + { + Entity.Focus(); + tbox.FontSize -= 2; + } + } + } + + break; + } + case Key.System: + { + + + for (int i = 0; i < grid.Children.Count; i++) + { + UIElement element = grid.Children[i]; + if (element.GetType() == typeof(TextBox)) + { + TextBox tbox = element as TextBox; + tbox.IsHitTestVisible = false; + } + } + + + break; + } + case Key.NumPad0: + { + SetPrimaryKey(); + + break; + } + case Key.RightShift: + { + for (int i = 0; i < grid.Children.Count; i++) + { + UIElement element = grid.Children[i]; + if (element.GetType() == typeof(TextBox)) + { + TextBox tbox = element as TextBox; + if (tbox.IsMouseOver) + { + + DrawingCanvas.Children.Remove(Entity); + } + } + } + break; + } + } + } + + void SetPrimaryKey() + { + Grid grid = Entity.Content as Grid; + for (int i = 0; i < grid.Children.Count; i++) + { + UIElement element = grid.Children[i]; + if (element.GetType() == typeof(TextBox)) + { + TextBox tbox = element as TextBox; + if (tbox.IsMouseOver) + { + var decorations = tbox.TextDecorations; + var weight = tbox.FontWeight; + + if (weight == FontWeights.Regular) + { + ChangeToKey(tbox, grid); + } + else + { + tbox.TextDecorations = null; + tbox.FontWeight = FontWeights.Regular; + } + } + } + } + } + + void SwapTop(TextBox tbox, Grid grid) + { + var row = Grid.GetRow(tbox); + if (row > 2) + { + var checkingRow = row - 1; + var parent = GetGridElement(grid, checkingRow, 0) as TextBox; + if (parent.TextDecorations != TextDecorations.Underline) + { + Trace.WriteLine("Need to move to the top"); + Grid.SetRow(parent, row); + Grid.SetRow(tbox, row - 1); + SwapTop(tbox, grid); + } + } + } + + void ChangeToKey(TextBox tbox, Grid grid) + { + var row = Grid.GetRow(tbox); + Trace.WriteLine($"Changing to primary key {row}"); + SwapTop(tbox, grid); + tbox.TextDecorations = TextDecorations.Underline; + tbox.FontWeight = FontWeights.Bold; + } + + UIElement GetGridElement(Grid g, int r, int c) + { + for (int i = 0; i < g.Children.Count; i++) + { + UIElement e = g.Children[i]; + if (Grid.GetRow(e) == r && Grid.GetColumn(e) == c) + return e; + } + return null; + } + + private void KeyUnpressed(object sender, KeyEventArgs e) + { + Grid grid = Entity.Content as Grid; ; + + for (int i = 0; i < grid.Children.Count; i++) + { + UIElement element = grid.Children[i]; + if (element.GetType() == typeof(TextBox)) + { + TextBox tbox = element as TextBox; + tbox.IsHitTestVisible = true; + } + } + } + + private void MainWindow_OnLoaded(object sender, RoutedEventArgs e) + { + mainCanvas = DrawingCanvas; + } + } +} diff --git a/ERD/MoveThumb.cs b/ERD/MoveThumb.cs new file mode 100644 index 0000000..a5a38fd --- /dev/null +++ b/ERD/MoveThumb.cs @@ -0,0 +1,47 @@ +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Linq; +using System.Net.Mime; +using System.Text; +using System.Threading.Tasks; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Controls.Primitives; + +namespace ERD +{ + public class MoveThumb : Thumb + { + public MoveThumb() + { + + DragDelta += MoveThumb_DragDelta; + } + + private void MoveThumb_DragDelta(object sender, DragDeltaEventArgs e) + { + var x = Application.Current.MainWindow; + Control designerItem = (this.DataContext as ContentControl); + if (designerItem != null) + { + + double left = Canvas.GetLeft(designerItem); + double top = Canvas.GetTop(designerItem); + + Trace.WriteLine(left); + + var eHorizontalChange = left + e.HorizontalChange; + var eVerticalChange = top + e.VerticalChange; + + eHorizontalChange = Math.Clamp(eHorizontalChange, 0, MainWindow.mainCanvas.ActualWidth - designerItem.ActualWidth); + eVerticalChange = Math.Clamp(eVerticalChange, 0, MainWindow.mainCanvas.ActualHeight - designerItem.ActualHeight); + + Canvas.SetLeft(designerItem, eHorizontalChange); + Canvas.SetTop(designerItem, eVerticalChange); + } + } + + + } +} diff --git a/ERD/ResizeThumb.cs b/ERD/ResizeThumb.cs new file mode 100644 index 0000000..dfe5e68 --- /dev/null +++ b/ERD/ResizeThumb.cs @@ -0,0 +1,69 @@ +using System; +using System.Windows.Controls; +using System.Windows.Controls.Primitives; +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Linq; +using System.Net.Mime; +using System.Text; +using System.Threading.Tasks; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Controls.Primitives; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Shapes; + +namespace ERD +{ + public class ResizeThumb : Thumb + { + public ResizeThumb() + { + DragDelta += new DragDeltaEventHandler(this.ResizeThumb_DragDelta); + } + + private void ResizeThumb_DragDelta(object sender, DragDeltaEventArgs e) + { + Control designerItem = this.DataContext as Control; + + if (designerItem != null) + { + double deltaVertical, deltaHorizontal; + + switch (VerticalAlignment) + { + case VerticalAlignment.Bottom: + deltaVertical = Math.Min(-e.VerticalChange, designerItem.ActualHeight - designerItem.MinHeight); + designerItem.Height -= deltaVertical; + break; + case VerticalAlignment.Top: + deltaVertical = Math.Min(e.VerticalChange, designerItem.ActualHeight - designerItem.MinHeight); + Canvas.SetTop(designerItem, Canvas.GetTop(designerItem) + deltaVertical); + designerItem.Height -= deltaVertical; + break; + default: + break; + } + + switch (HorizontalAlignment) + { + case HorizontalAlignment.Left: + deltaHorizontal = Math.Min(e.HorizontalChange, designerItem.ActualWidth - designerItem.MinWidth); + Canvas.SetLeft(designerItem, Canvas.GetLeft(designerItem) + deltaHorizontal); + designerItem.Width -= deltaHorizontal; + break; + case HorizontalAlignment.Right: + deltaHorizontal = Math.Min(-e.HorizontalChange, designerItem.ActualWidth - designerItem.MinWidth); + designerItem.Width -= deltaHorizontal; + break; + default: + break; + } + } + + e.Handled = true; + } + } +} \ No newline at end of file diff --git a/ERD/bin/Debug/net5.0-windows/ERD.deps.json b/ERD/bin/Debug/net5.0-windows/ERD.deps.json new file mode 100644 index 0000000..4ad25a6 --- /dev/null +++ b/ERD/bin/Debug/net5.0-windows/ERD.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v5.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v5.0": { + "ERD/1.0.0": { + "runtime": { + "ERD.dll": {} + } + } + } + }, + "libraries": { + "ERD/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/ERD/bin/Debug/net5.0-windows/ERD.dll b/ERD/bin/Debug/net5.0-windows/ERD.dll new file mode 100644 index 0000000..b983d46 Binary files /dev/null and b/ERD/bin/Debug/net5.0-windows/ERD.dll differ diff --git a/ERD/bin/Debug/net5.0-windows/ERD.exe b/ERD/bin/Debug/net5.0-windows/ERD.exe new file mode 100644 index 0000000..8f6e966 Binary files /dev/null and b/ERD/bin/Debug/net5.0-windows/ERD.exe differ diff --git a/ERD/bin/Debug/net5.0-windows/ERD.pdb b/ERD/bin/Debug/net5.0-windows/ERD.pdb new file mode 100644 index 0000000..2c23eed Binary files /dev/null and b/ERD/bin/Debug/net5.0-windows/ERD.pdb differ diff --git a/ERD/bin/Debug/net5.0-windows/ERD.runtimeconfig.dev.json b/ERD/bin/Debug/net5.0-windows/ERD.runtimeconfig.dev.json new file mode 100644 index 0000000..87442f4 --- /dev/null +++ b/ERD/bin/Debug/net5.0-windows/ERD.runtimeconfig.dev.json @@ -0,0 +1,8 @@ +{ + "runtimeOptions": { + "additionalProbingPaths": [ + "C:\\Users\\dhanr\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\dhanr\\.nuget\\packages" + ] + } +} \ No newline at end of file diff --git a/ERD/bin/Debug/net5.0-windows/ERD.runtimeconfig.json b/ERD/bin/Debug/net5.0-windows/ERD.runtimeconfig.json new file mode 100644 index 0000000..dae617c --- /dev/null +++ b/ERD/bin/Debug/net5.0-windows/ERD.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "net5.0", + "framework": { + "name": "Microsoft.WindowsDesktop.App", + "version": "5.0.0" + } + } +} \ No newline at end of file diff --git a/ERD/bin/Release/net5.0-windows/ERD.deps.json b/ERD/bin/Release/net5.0-windows/ERD.deps.json new file mode 100644 index 0000000..4ad25a6 --- /dev/null +++ b/ERD/bin/Release/net5.0-windows/ERD.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v5.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v5.0": { + "ERD/1.0.0": { + "runtime": { + "ERD.dll": {} + } + } + } + }, + "libraries": { + "ERD/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/ERD/bin/Release/net5.0-windows/ERD.dll b/ERD/bin/Release/net5.0-windows/ERD.dll new file mode 100644 index 0000000..68508ae Binary files /dev/null and b/ERD/bin/Release/net5.0-windows/ERD.dll differ diff --git a/ERD/bin/Release/net5.0-windows/ERD.exe b/ERD/bin/Release/net5.0-windows/ERD.exe new file mode 100644 index 0000000..8f6e966 Binary files /dev/null and b/ERD/bin/Release/net5.0-windows/ERD.exe differ diff --git a/ERD/bin/Release/net5.0-windows/ERD.pdb b/ERD/bin/Release/net5.0-windows/ERD.pdb new file mode 100644 index 0000000..88550f1 Binary files /dev/null and b/ERD/bin/Release/net5.0-windows/ERD.pdb differ diff --git a/ERD/bin/Release/net5.0-windows/ERD.runtimeconfig.dev.json b/ERD/bin/Release/net5.0-windows/ERD.runtimeconfig.dev.json new file mode 100644 index 0000000..87442f4 --- /dev/null +++ b/ERD/bin/Release/net5.0-windows/ERD.runtimeconfig.dev.json @@ -0,0 +1,8 @@ +{ + "runtimeOptions": { + "additionalProbingPaths": [ + "C:\\Users\\dhanr\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\dhanr\\.nuget\\packages" + ] + } +} \ No newline at end of file diff --git a/ERD/bin/Release/net5.0-windows/ERD.runtimeconfig.json b/ERD/bin/Release/net5.0-windows/ERD.runtimeconfig.json new file mode 100644 index 0000000..7ee7cd4 --- /dev/null +++ b/ERD/bin/Release/net5.0-windows/ERD.runtimeconfig.json @@ -0,0 +1,12 @@ +{ + "runtimeOptions": { + "tfm": "net5.0", + "framework": { + "name": "Microsoft.WindowsDesktop.App", + "version": "5.0.0" + }, + "configProperties": { + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false + } + } +} \ No newline at end of file diff --git a/ERD/obj/Debug/net5.0-windows/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/ERD/obj/Debug/net5.0-windows/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2f7e5ec --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/ERD/obj/Debug/net5.0-windows/App.baml b/ERD/obj/Debug/net5.0-windows/App.baml new file mode 100644 index 0000000..e761c6a Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/App.baml differ diff --git a/ERD/obj/Debug/net5.0-windows/App.g.cs b/ERD/obj/Debug/net5.0-windows/App.g.cs new file mode 100644 index 0000000..690c3d1 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/App.g.cs @@ -0,0 +1,84 @@ +#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "7DA0297AA8E0A106E59F1A2E23EDB5C17C688292" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using ERD; +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 ERD { + + + /// + /// App + /// + public partial class App : System.Windows.Application { + + private bool _contentLoaded; + + /// + /// InitializeComponent + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.3.0")] + public void InitializeComponent() { + if (_contentLoaded) { + return; + } + _contentLoaded = true; + + #line 5 "..\..\..\App.xaml" + this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative); + + #line default + #line hidden + System.Uri resourceLocater = new System.Uri("/ERD;component/app.xaml", System.UriKind.Relative); + + #line 1 "..\..\..\App.xaml" + System.Windows.Application.LoadComponent(this, resourceLocater); + + #line default + #line hidden + } + + /// + /// Application Entry Point. + /// + [System.STAThreadAttribute()] + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.3.0")] + public static void Main() { + ERD.App app = new ERD.App(); + app.InitializeComponent(); + app.Run(); + } + } +} + diff --git a/ERD/obj/Debug/net5.0-windows/App.g.i.cs b/ERD/obj/Debug/net5.0-windows/App.g.i.cs new file mode 100644 index 0000000..28e2d53 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/App.g.i.cs @@ -0,0 +1,84 @@ +#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "7DA0297AA8E0A106E59F1A2E23EDB5C17C688292" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using ERD; +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 ERD { + + + /// + /// App + /// + public partial class App : System.Windows.Application { + + private bool _contentLoaded; + + /// + /// InitializeComponent + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.3.0")] + public void InitializeComponent() { + if (_contentLoaded) { + return; + } + _contentLoaded = true; + + #line 5 "..\..\..\App.xaml" + this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative); + + #line default + #line hidden + System.Uri resourceLocater = new System.Uri("/ERD;V1.0.0.0;component/app.xaml", System.UriKind.Relative); + + #line 1 "..\..\..\App.xaml" + System.Windows.Application.LoadComponent(this, resourceLocater); + + #line default + #line hidden + } + + /// + /// Application Entry Point. + /// + [System.STAThreadAttribute()] + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.3.0")] + public static void Main() { + ERD.App app = new ERD.App(); + app.InitializeComponent(); + app.Run(); + } + } +} + diff --git a/ERD/obj/Debug/net5.0-windows/Components/EntityCard.baml b/ERD/obj/Debug/net5.0-windows/Components/EntityCard.baml new file mode 100644 index 0000000..79106ed Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/Components/EntityCard.baml differ diff --git a/ERD/obj/Debug/net5.0-windows/Components/EntityCard.g.cs b/ERD/obj/Debug/net5.0-windows/Components/EntityCard.g.cs new file mode 100644 index 0000000..3aa1376 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/Components/EntityCard.g.cs @@ -0,0 +1,91 @@ +#pragma checksum "..\..\..\..\Components\EntityCard.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "9BC7193E6A638AA0A07AB8F605BC75237FF028DF" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using ERD; +using ERD.Components; +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 ERD.Components { + + + /// + /// EntityCard + /// + public partial class EntityCard : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector { + + + #line 10 "..\..\..\..\Components\EntityCard.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal ERD.Components.EntityCard asd; + + #line default + #line hidden + + private bool _contentLoaded; + + /// + /// InitializeComponent + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.3.0")] + public void InitializeComponent() { + if (_contentLoaded) { + return; + } + _contentLoaded = true; + System.Uri resourceLocater = new System.Uri("/ERD;component/components/entitycard.xaml", System.UriKind.Relative); + + #line 1 "..\..\..\..\Components\EntityCard.xaml" + System.Windows.Application.LoadComponent(this, resourceLocater); + + #line default + #line hidden + } + + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.3.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: + this.asd = ((ERD.Components.EntityCard)(target)); + return; + } + this._contentLoaded = true; + } + } +} + diff --git a/ERD/obj/Debug/net5.0-windows/Components/EntityCard.g.i.cs b/ERD/obj/Debug/net5.0-windows/Components/EntityCard.g.i.cs new file mode 100644 index 0000000..1c59d1e --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/Components/EntityCard.g.i.cs @@ -0,0 +1,91 @@ +#pragma checksum "..\..\..\..\Components\EntityCard.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "9BC7193E6A638AA0A07AB8F605BC75237FF028DF" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using ERD; +using ERD.Components; +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 ERD.Components { + + + /// + /// EntityCard + /// + public partial class EntityCard : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector { + + + #line 10 "..\..\..\..\Components\EntityCard.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal ERD.Components.EntityCard asd; + + #line default + #line hidden + + private bool _contentLoaded; + + /// + /// InitializeComponent + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.3.0")] + public void InitializeComponent() { + if (_contentLoaded) { + return; + } + _contentLoaded = true; + System.Uri resourceLocater = new System.Uri("/ERD;V1.0.0.0;component/components/entitycard.xaml", System.UriKind.Relative); + + #line 1 "..\..\..\..\Components\EntityCard.xaml" + System.Windows.Application.LoadComponent(this, resourceLocater); + + #line default + #line hidden + } + + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.3.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: + this.asd = ((ERD.Components.EntityCard)(target)); + return; + } + this._contentLoaded = true; + } + } +} + diff --git a/ERD/obj/Debug/net5.0-windows/Components/ellipse.baml b/ERD/obj/Debug/net5.0-windows/Components/ellipse.baml new file mode 100644 index 0000000..ed78a49 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/Components/ellipse.baml differ diff --git a/ERD/obj/Debug/net5.0-windows/Components/ellipse.g.cs b/ERD/obj/Debug/net5.0-windows/Components/ellipse.g.cs new file mode 100644 index 0000000..cbeb9f4 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/Components/ellipse.g.cs @@ -0,0 +1,89 @@ +#pragma checksum "..\..\..\..\Components\ellipse.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "D8615DD82E4B4339D9FB3F993CE1AF2E4BE97A22" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +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 ERD.Components { + + + /// + /// ellipse + /// + public partial class ellipse : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector { + + + #line 9 "..\..\..\..\Components\ellipse.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal ERD.Components.ellipse Hello; + + #line default + #line hidden + + private bool _contentLoaded; + + /// + /// InitializeComponent + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.3.0")] + public void InitializeComponent() { + if (_contentLoaded) { + return; + } + _contentLoaded = true; + System.Uri resourceLocater = new System.Uri("/ERD;component/components/ellipse.xaml", System.UriKind.Relative); + + #line 1 "..\..\..\..\Components\ellipse.xaml" + System.Windows.Application.LoadComponent(this, resourceLocater); + + #line default + #line hidden + } + + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.3.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: + this.Hello = ((ERD.Components.ellipse)(target)); + return; + } + this._contentLoaded = true; + } + } +} + diff --git a/ERD/obj/Debug/net5.0-windows/Components/ellipse.g.i.cs b/ERD/obj/Debug/net5.0-windows/Components/ellipse.g.i.cs new file mode 100644 index 0000000..5788a8b --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/Components/ellipse.g.i.cs @@ -0,0 +1,89 @@ +#pragma checksum "..\..\..\..\Components\ellipse.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "D8615DD82E4B4339D9FB3F993CE1AF2E4BE97A22" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +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 ERD.Components { + + + /// + /// ellipse + /// + public partial class ellipse : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector { + + + #line 9 "..\..\..\..\Components\ellipse.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal ERD.Components.ellipse Hello; + + #line default + #line hidden + + private bool _contentLoaded; + + /// + /// InitializeComponent + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.3.0")] + public void InitializeComponent() { + if (_contentLoaded) { + return; + } + _contentLoaded = true; + System.Uri resourceLocater = new System.Uri("/ERD;V1.0.0.0;component/components/ellipse.xaml", System.UriKind.Relative); + + #line 1 "..\..\..\..\Components\ellipse.xaml" + System.Windows.Application.LoadComponent(this, resourceLocater); + + #line default + #line hidden + } + + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.3.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: + this.Hello = ((ERD.Components.ellipse)(target)); + return; + } + this._contentLoaded = true; + } + } +} + diff --git a/ERD/obj/Debug/net5.0-windows/ERD.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..960f4eb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD.assets.cache new file mode 100644 index 0000000..899a00d Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD.csproj.AssemblyReference.cache b/ERD/obj/Debug/net5.0-windows/ERD.csproj.AssemblyReference.cache new file mode 100644 index 0000000..750ecc1 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD.csproj.AssemblyReference.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD.csproj.CoreCompileInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..608192e --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +e0c143eba75bcd097edaf0175d41a1a916c26c38 diff --git a/ERD/obj/Debug/net5.0-windows/ERD.csproj.FileListAbsolute.txt b/ERD/obj/Debug/net5.0-windows/ERD.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..d27dc05 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD.csproj.FileListAbsolute.txt @@ -0,0 +1,28 @@ +D:\csharp\wpf1\ERD\ERD\bin\Debug\net5.0-windows\ERD.exe +D:\csharp\wpf1\ERD\ERD\bin\Debug\net5.0-windows\ERD.deps.json +D:\csharp\wpf1\ERD\ERD\bin\Debug\net5.0-windows\ERD.runtimeconfig.json +D:\csharp\wpf1\ERD\ERD\bin\Debug\net5.0-windows\ERD.runtimeconfig.dev.json +D:\csharp\wpf1\ERD\ERD\bin\Debug\net5.0-windows\ERD.dll +D:\csharp\wpf1\ERD\ERD\bin\Debug\net5.0-windows\ERD.pdb +D:\csharp\wpf1\ERD\ERD\obj\Debug\net5.0-windows\ERD.csproj.AssemblyReference.cache +D:\csharp\wpf1\ERD\ERD\obj\Debug\net5.0-windows\MainWindow.g.cs +D:\csharp\wpf1\ERD\ERD\obj\Debug\net5.0-windows\App.g.cs +D:\csharp\wpf1\ERD\ERD\obj\Debug\net5.0-windows\ERD_MarkupCompile.cache +D:\csharp\wpf1\ERD\ERD\obj\Debug\net5.0-windows\ERD_MarkupCompile.lref +D:\csharp\wpf1\ERD\ERD\obj\Debug\net5.0-windows\MainWindow.baml +D:\csharp\wpf1\ERD\ERD\obj\Debug\net5.0-windows\ERD.g.resources +D:\csharp\wpf1\ERD\ERD\obj\Debug\net5.0-windows\ERD.GeneratedMSBuildEditorConfig.editorconfig +D:\csharp\wpf1\ERD\ERD\obj\Debug\net5.0-windows\ERD.AssemblyInfoInputs.cache +D:\csharp\wpf1\ERD\ERD\obj\Debug\net5.0-windows\ERD.AssemblyInfo.cs +D:\csharp\wpf1\ERD\ERD\obj\Debug\net5.0-windows\ERD.csproj.CoreCompileInputs.cache +D:\csharp\wpf1\ERD\ERD\obj\Debug\net5.0-windows\ERD.dll +D:\csharp\wpf1\ERD\ERD\obj\Debug\net5.0-windows\refint\ERD.dll +D:\csharp\wpf1\ERD\ERD\obj\Debug\net5.0-windows\ERD.pdb +D:\csharp\wpf1\ERD\ERD\obj\Debug\net5.0-windows\ERD.genruntimeconfig.cache +D:\csharp\wpf1\ERD\ERD\obj\Debug\net5.0-windows\ref\ERD.dll +D:\csharp\wpf1\ERD\ERD\obj\Debug\net5.0-windows\GeneratedInternalTypeHelper.g.cs +D:\csharp\wpf1\ERD\ERD\obj\Debug\net5.0-windows\Components\EntityCard.g.cs +D:\csharp\wpf1\ERD\ERD\obj\Debug\net5.0-windows\Components\EntityCard.baml +D:\csharp\wpf1\ERD\ERD\obj\Debug\net5.0-windows\App.baml +D:\csharp\wpf1\ERD\ERD\obj\Debug\net5.0-windows\Components\ellipse.g.cs +D:\csharp\wpf1\ERD\ERD\obj\Debug\net5.0-windows\Components\ellipse.baml diff --git a/ERD/obj/Debug/net5.0-windows/ERD.designer.deps.json b/ERD/obj/Debug/net5.0-windows/ERD.designer.deps.json new file mode 100644 index 0000000..74b9003 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD.designer.deps.json @@ -0,0 +1,11 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v5.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v5.0": {} + }, + "libraries": {} +} \ No newline at end of file diff --git a/ERD/obj/Debug/net5.0-windows/ERD.designer.runtimeconfig.json b/ERD/obj/Debug/net5.0-windows/ERD.designer.runtimeconfig.json new file mode 100644 index 0000000..f03c455 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD.designer.runtimeconfig.json @@ -0,0 +1,16 @@ +{ + "runtimeOptions": { + "tfm": "net5.0", + "framework": { + "name": "Microsoft.WindowsDesktop.App", + "version": "5.0.0" + }, + "additionalProbingPaths": [ + "C:\\Users\\dhanr\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\dhanr\\.nuget\\packages" + ], + "configProperties": { + "Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true + } + } +} \ No newline at end of file diff --git a/ERD/obj/Debug/net5.0-windows/ERD.dll b/ERD/obj/Debug/net5.0-windows/ERD.dll new file mode 100644 index 0000000..b983d46 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD.dll differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD.g.resources b/ERD/obj/Debug/net5.0-windows/ERD.g.resources new file mode 100644 index 0000000..5423a69 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD.g.resources differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD.genruntimeconfig.cache b/ERD/obj/Debug/net5.0-windows/ERD.genruntimeconfig.cache new file mode 100644 index 0000000..8c59fe7 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD.genruntimeconfig.cache @@ -0,0 +1 @@ +4fbab55de74e3d3f78b1e1872b242dfd852eda90 diff --git a/ERD/obj/Debug/net5.0-windows/ERD.pdb b/ERD/obj/Debug/net5.0-windows/ERD.pdb new file mode 100644 index 0000000..2c23eed Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD.pdb differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_02yygypt_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_02yygypt_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_02yygypt_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_02yygypt_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_02yygypt_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_02yygypt_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_02yygypt_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_02yygypt_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..c70f800 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_02yygypt_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_02yygypt_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_02yygypt_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_02yygypt_wpftmp.assets.cache new file mode 100644 index 0000000..abe1a15 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_02yygypt_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_02yygypt_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_02yygypt_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_0dk1slxw_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_0dk1slxw_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_0dk1slxw_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_0dk1slxw_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_0dk1slxw_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_0dk1slxw_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_0dk1slxw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_0dk1slxw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..6c99076 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_0dk1slxw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_0dk1slxw_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_0dk1slxw_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_0dk1slxw_wpftmp.assets.cache new file mode 100644 index 0000000..9307be1 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_0dk1slxw_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_0dk1slxw_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_0dk1slxw_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_0gkgubhy_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_0gkgubhy_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_0gkgubhy_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_0gkgubhy_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_0gkgubhy_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_0gkgubhy_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_0gkgubhy_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_0gkgubhy_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..c6c97d4 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_0gkgubhy_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_0gkgubhy_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_0gkgubhy_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_0gkgubhy_wpftmp.assets.cache new file mode 100644 index 0000000..6a522bf Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_0gkgubhy_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_0gkgubhy_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_0gkgubhy_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_0iy3fmfl_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_0iy3fmfl_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_0iy3fmfl_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_0iy3fmfl_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_0iy3fmfl_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_0iy3fmfl_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_0iy3fmfl_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_0iy3fmfl_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..4c6142c --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_0iy3fmfl_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_0iy3fmfl_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_0iy3fmfl_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_0iy3fmfl_wpftmp.assets.cache new file mode 100644 index 0000000..ab58220 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_0iy3fmfl_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_0iy3fmfl_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_0iy3fmfl_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_0oi03iy1_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_0oi03iy1_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_0oi03iy1_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_0oi03iy1_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_0oi03iy1_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_0oi03iy1_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_0oi03iy1_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_0oi03iy1_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..427a856 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_0oi03iy1_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_0oi03iy1_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_0oi03iy1_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_0oi03iy1_wpftmp.assets.cache new file mode 100644 index 0000000..3130ef5 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_0oi03iy1_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_0oi03iy1_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_0oi03iy1_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_13xyd2ix_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_13xyd2ix_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_13xyd2ix_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_13xyd2ix_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_13xyd2ix_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_13xyd2ix_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_13xyd2ix_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_13xyd2ix_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..c1ad5c9 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_13xyd2ix_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_13xyd2ix_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_13xyd2ix_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_13xyd2ix_wpftmp.assets.cache new file mode 100644 index 0000000..2ea0bd5 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_13xyd2ix_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_13xyd2ix_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_13xyd2ix_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_142b3zyu_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_142b3zyu_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_142b3zyu_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_142b3zyu_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_142b3zyu_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_142b3zyu_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_142b3zyu_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_142b3zyu_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..429b1c2 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_142b3zyu_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_142b3zyu_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_142b3zyu_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_142b3zyu_wpftmp.assets.cache new file mode 100644 index 0000000..b4c71a2 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_142b3zyu_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_142b3zyu_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_142b3zyu_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1bb3nkua_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_1bb3nkua_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_1bb3nkua_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1bb3nkua_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_1bb3nkua_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_1bb3nkua_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1bb3nkua_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_1bb3nkua_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..f0be235 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_1bb3nkua_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_1bb3nkua_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1bb3nkua_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_1bb3nkua_wpftmp.assets.cache new file mode 100644 index 0000000..0bfde3c Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_1bb3nkua_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1bb3nkua_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_1bb3nkua_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1djwioqq_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_1djwioqq_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_1djwioqq_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1djwioqq_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_1djwioqq_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_1djwioqq_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1djwioqq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_1djwioqq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..39c39e9 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_1djwioqq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_1djwioqq_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1djwioqq_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_1djwioqq_wpftmp.assets.cache new file mode 100644 index 0000000..1386020 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_1djwioqq_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1djwioqq_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_1djwioqq_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1hbb5pje_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_1hbb5pje_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_1hbb5pje_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1hbb5pje_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_1hbb5pje_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_1hbb5pje_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1hbb5pje_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_1hbb5pje_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..cc5e946 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_1hbb5pje_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_1hbb5pje_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1hbb5pje_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_1hbb5pje_wpftmp.assets.cache new file mode 100644 index 0000000..4bec264 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_1hbb5pje_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1hbb5pje_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_1hbb5pje_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1hgslfmm_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_1hgslfmm_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_1hgslfmm_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1hgslfmm_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_1hgslfmm_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_1hgslfmm_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1hgslfmm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_1hgslfmm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d3b45a6 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_1hgslfmm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_1hgslfmm_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1hgslfmm_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_1hgslfmm_wpftmp.assets.cache new file mode 100644 index 0000000..8030518 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_1hgslfmm_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1hgslfmm_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_1hgslfmm_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1hpfy1ea_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_1hpfy1ea_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_1hpfy1ea_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1hpfy1ea_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_1hpfy1ea_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_1hpfy1ea_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1hpfy1ea_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_1hpfy1ea_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..42e0594 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_1hpfy1ea_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_1hpfy1ea_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1hpfy1ea_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_1hpfy1ea_wpftmp.assets.cache new file mode 100644 index 0000000..7317eea Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_1hpfy1ea_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1hpfy1ea_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_1hpfy1ea_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1oa3zlnn_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_1oa3zlnn_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_1oa3zlnn_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1oa3zlnn_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_1oa3zlnn_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_1oa3zlnn_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1oa3zlnn_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_1oa3zlnn_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..67464c9 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_1oa3zlnn_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_1oa3zlnn_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1oa3zlnn_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_1oa3zlnn_wpftmp.assets.cache new file mode 100644 index 0000000..c42b19f Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_1oa3zlnn_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1oa3zlnn_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_1oa3zlnn_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1pkbmjid_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_1pkbmjid_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_1pkbmjid_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1pkbmjid_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_1pkbmjid_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_1pkbmjid_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1pkbmjid_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_1pkbmjid_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..6026d51 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_1pkbmjid_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_1pkbmjid_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1pkbmjid_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_1pkbmjid_wpftmp.assets.cache new file mode 100644 index 0000000..7d8731b Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_1pkbmjid_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1pkbmjid_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_1pkbmjid_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1qiag5u3_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_1qiag5u3_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_1qiag5u3_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1qiag5u3_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_1qiag5u3_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_1qiag5u3_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1qiag5u3_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_1qiag5u3_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..7ff62d5 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_1qiag5u3_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_1qiag5u3_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1qiag5u3_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_1qiag5u3_wpftmp.assets.cache new file mode 100644 index 0000000..516cfa7 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_1qiag5u3_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1qiag5u3_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_1qiag5u3_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1sl5vpll_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_1sl5vpll_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_1sl5vpll_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1sl5vpll_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_1sl5vpll_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_1sl5vpll_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1sl5vpll_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_1sl5vpll_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..8d12be5 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_1sl5vpll_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_1sl5vpll_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1sl5vpll_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_1sl5vpll_wpftmp.assets.cache new file mode 100644 index 0000000..11f8d69 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_1sl5vpll_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1sl5vpll_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_1sl5vpll_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1suv0q4k_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_1suv0q4k_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_1suv0q4k_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1suv0q4k_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_1suv0q4k_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_1suv0q4k_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1suv0q4k_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_1suv0q4k_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..5f0b996 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_1suv0q4k_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_1suv0q4k_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1suv0q4k_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_1suv0q4k_wpftmp.assets.cache new file mode 100644 index 0000000..b923e69 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_1suv0q4k_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1suv0q4k_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_1suv0q4k_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1t5lafju_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_1t5lafju_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_1t5lafju_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1t5lafju_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_1t5lafju_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_1t5lafju_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1t5lafju_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_1t5lafju_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..e8476a4 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_1t5lafju_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_1t5lafju_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1t5lafju_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_1t5lafju_wpftmp.assets.cache new file mode 100644 index 0000000..aaa91f7 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_1t5lafju_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_1t5lafju_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_1t5lafju_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_20gqcoqq_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_20gqcoqq_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_20gqcoqq_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_20gqcoqq_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_20gqcoqq_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_20gqcoqq_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_20gqcoqq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_20gqcoqq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..6c6fc15 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_20gqcoqq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_20gqcoqq_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_20gqcoqq_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_20gqcoqq_wpftmp.assets.cache new file mode 100644 index 0000000..4970431 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_20gqcoqq_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_20gqcoqq_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_20gqcoqq_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_210i3s15_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_210i3s15_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_210i3s15_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_210i3s15_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_210i3s15_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_210i3s15_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_210i3s15_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_210i3s15_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..db6e5fc --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_210i3s15_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_210i3s15_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_210i3s15_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_210i3s15_wpftmp.assets.cache new file mode 100644 index 0000000..ce000c6 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_210i3s15_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_210i3s15_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_210i3s15_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_21on4erd_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_21on4erd_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_21on4erd_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_21on4erd_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_21on4erd_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_21on4erd_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_21on4erd_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_21on4erd_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..61b6b12 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_21on4erd_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_21on4erd_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_21on4erd_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_21on4erd_wpftmp.assets.cache new file mode 100644 index 0000000..e7ef523 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_21on4erd_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_21on4erd_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_21on4erd_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_2drvltha_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_2drvltha_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_2drvltha_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_2drvltha_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_2drvltha_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_2drvltha_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_2drvltha_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_2drvltha_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..4a2d65a --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_2drvltha_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_2drvltha_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_2drvltha_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_2drvltha_wpftmp.assets.cache new file mode 100644 index 0000000..0259e70 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_2drvltha_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_2drvltha_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_2drvltha_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_2k5wefjj_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_2k5wefjj_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_2k5wefjj_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_2k5wefjj_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_2k5wefjj_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_2k5wefjj_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_2k5wefjj_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_2k5wefjj_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..5023b81 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_2k5wefjj_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_2k5wefjj_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_2k5wefjj_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_2k5wefjj_wpftmp.assets.cache new file mode 100644 index 0000000..7d580d3 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_2k5wefjj_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_2k5wefjj_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_2k5wefjj_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_2myyqibu_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_2myyqibu_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_2myyqibu_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_2myyqibu_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_2myyqibu_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_2myyqibu_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_2myyqibu_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_2myyqibu_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..a662591 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_2myyqibu_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_2myyqibu_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_2myyqibu_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_2myyqibu_wpftmp.assets.cache new file mode 100644 index 0000000..2ee1cc5 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_2myyqibu_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_2myyqibu_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_2myyqibu_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_2ox45b55_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_2ox45b55_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_2ox45b55_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_2ox45b55_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_2ox45b55_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_2ox45b55_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_2ox45b55_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_2ox45b55_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..f85bbac --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_2ox45b55_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_2ox45b55_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_2ox45b55_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_2ox45b55_wpftmp.assets.cache new file mode 100644 index 0000000..25c87a5 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_2ox45b55_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_2ox45b55_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_2ox45b55_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_2swcadqh_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_2swcadqh_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_2swcadqh_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_2swcadqh_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_2swcadqh_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_2swcadqh_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_2swcadqh_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_2swcadqh_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..c6178e8 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_2swcadqh_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_2swcadqh_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_2swcadqh_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_2swcadqh_wpftmp.assets.cache new file mode 100644 index 0000000..8ae7fba Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_2swcadqh_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_2swcadqh_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_2swcadqh_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_2wgcxagv_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_2wgcxagv_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_2wgcxagv_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_2wgcxagv_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_2wgcxagv_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_2wgcxagv_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_2wgcxagv_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_2wgcxagv_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..8743101 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_2wgcxagv_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_2wgcxagv_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_2wgcxagv_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_2wgcxagv_wpftmp.assets.cache new file mode 100644 index 0000000..7a0c0dc Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_2wgcxagv_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_2wgcxagv_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_2wgcxagv_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_2xr50dhx_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_2xr50dhx_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_2xr50dhx_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_2xr50dhx_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_2xr50dhx_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_2xr50dhx_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_2xr50dhx_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_2xr50dhx_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..369c5c1 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_2xr50dhx_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_2xr50dhx_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_2xr50dhx_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_2xr50dhx_wpftmp.assets.cache new file mode 100644 index 0000000..db93f53 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_2xr50dhx_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_2xr50dhx_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_2xr50dhx_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_2zzbnnhb_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_2zzbnnhb_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_2zzbnnhb_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_2zzbnnhb_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_2zzbnnhb_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_2zzbnnhb_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_2zzbnnhb_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_2zzbnnhb_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..eeb2726 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_2zzbnnhb_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_2zzbnnhb_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_2zzbnnhb_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_2zzbnnhb_wpftmp.assets.cache new file mode 100644 index 0000000..cc5d14b Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_2zzbnnhb_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_2zzbnnhb_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_2zzbnnhb_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_33ricyea_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_33ricyea_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_33ricyea_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_33ricyea_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_33ricyea_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_33ricyea_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_33ricyea_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_33ricyea_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b759ea5 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_33ricyea_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_33ricyea_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_33ricyea_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_33ricyea_wpftmp.assets.cache new file mode 100644 index 0000000..0589f01 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_33ricyea_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_33ricyea_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_33ricyea_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_35akpcdj_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_35akpcdj_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_35akpcdj_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_35akpcdj_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_35akpcdj_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_35akpcdj_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_35akpcdj_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_35akpcdj_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..f9d62cc --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_35akpcdj_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_35akpcdj_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_35akpcdj_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_35akpcdj_wpftmp.assets.cache new file mode 100644 index 0000000..bef4a55 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_35akpcdj_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_35akpcdj_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_35akpcdj_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_3bp4212b_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_3bp4212b_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_3bp4212b_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_3bp4212b_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_3bp4212b_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_3bp4212b_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_3bp4212b_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_3bp4212b_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..daddd41 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_3bp4212b_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_3bp4212b_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_3bp4212b_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_3bp4212b_wpftmp.assets.cache new file mode 100644 index 0000000..31de6a3 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_3bp4212b_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_3bp4212b_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_3bp4212b_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_3ghl0ox2_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_3ghl0ox2_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_3ghl0ox2_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_3ghl0ox2_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_3ghl0ox2_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_3ghl0ox2_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_3ghl0ox2_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_3ghl0ox2_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..978ab53 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_3ghl0ox2_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_3ghl0ox2_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_3ghl0ox2_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_3ghl0ox2_wpftmp.assets.cache new file mode 100644 index 0000000..fe0ee95 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_3ghl0ox2_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_3ghl0ox2_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_3ghl0ox2_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_3gs20sn1_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_3gs20sn1_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_3gs20sn1_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_3gs20sn1_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_3gs20sn1_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_3gs20sn1_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_3gs20sn1_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_3gs20sn1_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..0d12afd --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_3gs20sn1_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_3gs20sn1_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_3gs20sn1_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_3gs20sn1_wpftmp.assets.cache new file mode 100644 index 0000000..1fd3fff Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_3gs20sn1_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_3gs20sn1_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_3gs20sn1_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_3ptpdp0w_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_3ptpdp0w_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_3ptpdp0w_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_3ptpdp0w_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_3ptpdp0w_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_3ptpdp0w_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_3ptpdp0w_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_3ptpdp0w_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..77da811 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_3ptpdp0w_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_3ptpdp0w_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_3ptpdp0w_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_3ptpdp0w_wpftmp.assets.cache new file mode 100644 index 0000000..4b8225f Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_3ptpdp0w_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_3ptpdp0w_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_3ptpdp0w_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_3xkjceuw_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_3xkjceuw_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_3xkjceuw_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_3xkjceuw_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_3xkjceuw_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_3xkjceuw_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_3xkjceuw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_3xkjceuw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..eb59617 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_3xkjceuw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_3xkjceuw_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_3xkjceuw_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_3xkjceuw_wpftmp.assets.cache new file mode 100644 index 0000000..8546bce Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_3xkjceuw_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_3xkjceuw_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_3xkjceuw_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_4335lzun_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_4335lzun_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_4335lzun_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_4335lzun_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_4335lzun_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_4335lzun_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_4335lzun_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_4335lzun_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..a7e48e3 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_4335lzun_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_4335lzun_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_4335lzun_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_4335lzun_wpftmp.assets.cache new file mode 100644 index 0000000..ac9d9bd Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_4335lzun_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_4335lzun_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_4335lzun_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_4ctbsmca_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_4ctbsmca_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_4ctbsmca_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_4ctbsmca_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_4ctbsmca_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_4ctbsmca_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_4ctbsmca_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_4ctbsmca_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..967c329 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_4ctbsmca_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_4ctbsmca_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_4ctbsmca_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_4ctbsmca_wpftmp.assets.cache new file mode 100644 index 0000000..4710209 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_4ctbsmca_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_4ctbsmca_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_4ctbsmca_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_4kdvqmlq_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_4kdvqmlq_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_4kdvqmlq_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_4kdvqmlq_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_4kdvqmlq_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_4kdvqmlq_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_4kdvqmlq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_4kdvqmlq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..309be9c --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_4kdvqmlq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_4kdvqmlq_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_4kdvqmlq_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_4kdvqmlq_wpftmp.assets.cache new file mode 100644 index 0000000..20e5d17 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_4kdvqmlq_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_4t2d02ir_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_4t2d02ir_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_4t2d02ir_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_4t2d02ir_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_4t2d02ir_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_4t2d02ir_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_4t2d02ir_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_4t2d02ir_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..ea8fd0d --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_4t2d02ir_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_4t2d02ir_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_4t2d02ir_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_4t2d02ir_wpftmp.assets.cache new file mode 100644 index 0000000..1a665f2 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_4t2d02ir_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_4t2d02ir_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_4t2d02ir_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_4wsjqgtw_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_4wsjqgtw_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_4wsjqgtw_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_4wsjqgtw_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_4wsjqgtw_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_4wsjqgtw_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_4wsjqgtw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_4wsjqgtw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d7d8bc4 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_4wsjqgtw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_4wsjqgtw_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_4wsjqgtw_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_4wsjqgtw_wpftmp.assets.cache new file mode 100644 index 0000000..d3b75a4 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_4wsjqgtw_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_4wsjqgtw_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_4wsjqgtw_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_54doaz4y_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_54doaz4y_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_54doaz4y_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_54doaz4y_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_54doaz4y_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_54doaz4y_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_54doaz4y_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_54doaz4y_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..916ba04 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_54doaz4y_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_54doaz4y_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_54doaz4y_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_54doaz4y_wpftmp.assets.cache new file mode 100644 index 0000000..e21859f Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_54doaz4y_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_54doaz4y_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_54doaz4y_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5atlnyuk_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_5atlnyuk_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_5atlnyuk_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5atlnyuk_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_5atlnyuk_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_5atlnyuk_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5atlnyuk_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_5atlnyuk_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..73977de --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_5atlnyuk_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_5atlnyuk_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5atlnyuk_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_5atlnyuk_wpftmp.assets.cache new file mode 100644 index 0000000..cfed92e Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_5atlnyuk_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5atlnyuk_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_5atlnyuk_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5bzrn45o_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_5bzrn45o_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_5bzrn45o_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5bzrn45o_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_5bzrn45o_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_5bzrn45o_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5bzrn45o_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_5bzrn45o_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..6d2fc47 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_5bzrn45o_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_5bzrn45o_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5bzrn45o_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_5bzrn45o_wpftmp.assets.cache new file mode 100644 index 0000000..498d173 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_5bzrn45o_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5bzrn45o_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_5bzrn45o_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5bzzyz0l_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_5bzzyz0l_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_5bzzyz0l_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5bzzyz0l_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_5bzzyz0l_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_5bzzyz0l_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5bzzyz0l_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_5bzzyz0l_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..6c9474d --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_5bzzyz0l_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_5bzzyz0l_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5bzzyz0l_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_5bzzyz0l_wpftmp.assets.cache new file mode 100644 index 0000000..721bde3 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_5bzzyz0l_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5bzzyz0l_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_5bzzyz0l_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5dm1ahk0_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_5dm1ahk0_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_5dm1ahk0_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5dm1ahk0_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_5dm1ahk0_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_5dm1ahk0_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5dm1ahk0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_5dm1ahk0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..9c38572 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_5dm1ahk0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_5dm1ahk0_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5dm1ahk0_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_5dm1ahk0_wpftmp.assets.cache new file mode 100644 index 0000000..1ebb08d Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_5dm1ahk0_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5dm1ahk0_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_5dm1ahk0_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5l1qufi2_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_5l1qufi2_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_5l1qufi2_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5l1qufi2_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_5l1qufi2_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_5l1qufi2_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5l1qufi2_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_5l1qufi2_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d2c7c2e --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_5l1qufi2_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_5l1qufi2_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5l1qufi2_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_5l1qufi2_wpftmp.assets.cache new file mode 100644 index 0000000..a868304 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_5l1qufi2_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5l1qufi2_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_5l1qufi2_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5ljw5qzc_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_5ljw5qzc_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_5ljw5qzc_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5ljw5qzc_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_5ljw5qzc_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_5ljw5qzc_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5ljw5qzc_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_5ljw5qzc_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..c2f2e41 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_5ljw5qzc_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_5ljw5qzc_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5ljw5qzc_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_5ljw5qzc_wpftmp.assets.cache new file mode 100644 index 0000000..f31123c Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_5ljw5qzc_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5qwci0gw_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_5qwci0gw_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_5qwci0gw_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5qwci0gw_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_5qwci0gw_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_5qwci0gw_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5qwci0gw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_5qwci0gw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..ec0f8d0 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_5qwci0gw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_5qwci0gw_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5qwci0gw_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_5qwci0gw_wpftmp.assets.cache new file mode 100644 index 0000000..1a6124c Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_5qwci0gw_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5qwci0gw_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_5qwci0gw_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5qycmtvn_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_5qycmtvn_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_5qycmtvn_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5qycmtvn_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_5qycmtvn_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_5qycmtvn_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5qycmtvn_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_5qycmtvn_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d2b19dc --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_5qycmtvn_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_5qycmtvn_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5qycmtvn_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_5qycmtvn_wpftmp.assets.cache new file mode 100644 index 0000000..c7d81c9 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_5qycmtvn_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5qycmtvn_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_5qycmtvn_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5rvw2cpc_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_5rvw2cpc_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_5rvw2cpc_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5rvw2cpc_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_5rvw2cpc_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_5rvw2cpc_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5rvw2cpc_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_5rvw2cpc_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..9dc898e --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_5rvw2cpc_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_5rvw2cpc_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5rvw2cpc_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_5rvw2cpc_wpftmp.assets.cache new file mode 100644 index 0000000..58f64f1 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_5rvw2cpc_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5rvw2cpc_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_5rvw2cpc_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5rzvm10e_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_5rzvm10e_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_5rzvm10e_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5rzvm10e_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_5rzvm10e_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_5rzvm10e_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5rzvm10e_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_5rzvm10e_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..831b92a --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_5rzvm10e_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_5rzvm10e_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5rzvm10e_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_5rzvm10e_wpftmp.assets.cache new file mode 100644 index 0000000..ea4d147 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_5rzvm10e_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5rzvm10e_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_5rzvm10e_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5tqtzaf0_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_5tqtzaf0_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_5tqtzaf0_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5tqtzaf0_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_5tqtzaf0_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_5tqtzaf0_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5tqtzaf0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_5tqtzaf0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..c6415a8 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_5tqtzaf0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_5tqtzaf0_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5tqtzaf0_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_5tqtzaf0_wpftmp.assets.cache new file mode 100644 index 0000000..944952f Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_5tqtzaf0_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_5tqtzaf0_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_5tqtzaf0_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_MarkupCompile.cache b/ERD/obj/Debug/net5.0-windows/ERD_MarkupCompile.cache new file mode 100644 index 0000000..02a8aa5 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_MarkupCompile.cache @@ -0,0 +1,20 @@ +ERD + + +winexe +C# +.cs +D:\csharp\wpf1\ERD\ERD\obj\Debug\net5.0-windows\ +ERD +none +false +TRACE;DEBUG;NET;NET5_0;NETCOREAPP +D:\csharp\wpf1\ERD\ERD\App.xaml +3957823930 + +111040202912 +193-1891726104 +Components\ellipse.xaml;Components\EntityCard.xaml;MainWindow.xaml; + +False + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_MarkupCompile.i.cache b/ERD/obj/Debug/net5.0-windows/ERD_MarkupCompile.i.cache new file mode 100644 index 0000000..0a55088 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_MarkupCompile.i.cache @@ -0,0 +1,20 @@ +ERD +1.0.0.0 + +winexe +C# +.cs +D:\csharp\wpf1\ERD\ERD\obj\Debug\net5.0-windows\ +ERD +none +false +TRACE;DEBUG;NET;NET5_0;NETCOREAPP +D:\csharp\wpf1\ERD\ERD\App.xaml +3957823930 + +131426920538 +193-1891726104 +Components\ellipse.xaml;Components\EntityCard.xaml;MainWindow.xaml; + +False + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_MarkupCompile.lref b/ERD/obj/Debug/net5.0-windows/ERD_MarkupCompile.lref new file mode 100644 index 0000000..97e3e06 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_MarkupCompile.lref @@ -0,0 +1,5 @@ + +FD:\csharp\wpf1\ERD\ERD\App.xaml;; +FD:\csharp\wpf1\ERD\ERD\Components\EntityCard.xaml;; +FD:\csharp\wpf1\ERD\ERD\MainWindow.xaml;; + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_a03mi0cy_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_a03mi0cy_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_a03mi0cy_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_a03mi0cy_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_a03mi0cy_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_a03mi0cy_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_a03mi0cy_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_a03mi0cy_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..e4cbedf --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_a03mi0cy_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_a03mi0cy_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_a03mi0cy_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_a03mi0cy_wpftmp.assets.cache new file mode 100644 index 0000000..8b22f27 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_a03mi0cy_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_a03mi0cy_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_a03mi0cy_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_a11ffokv_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_a11ffokv_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_a11ffokv_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_a11ffokv_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_a11ffokv_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_a11ffokv_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_a11ffokv_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_a11ffokv_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..f346916 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_a11ffokv_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_a11ffokv_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_a11ffokv_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_a11ffokv_wpftmp.assets.cache new file mode 100644 index 0000000..0f76b49 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_a11ffokv_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_a11ffokv_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_a11ffokv_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_a1yshtwn_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_a1yshtwn_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_a1yshtwn_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_a1yshtwn_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_a1yshtwn_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_a1yshtwn_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_a1yshtwn_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_a1yshtwn_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..675b1fa --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_a1yshtwn_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_a1yshtwn_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_a1yshtwn_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_a1yshtwn_wpftmp.assets.cache new file mode 100644 index 0000000..6892c56 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_a1yshtwn_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_a1yshtwn_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_a1yshtwn_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_a4wmzmfl_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_a4wmzmfl_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_a4wmzmfl_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_a4wmzmfl_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_a4wmzmfl_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_a4wmzmfl_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_a4wmzmfl_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_a4wmzmfl_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..e86890f --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_a4wmzmfl_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_a4wmzmfl_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_a4wmzmfl_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_a4wmzmfl_wpftmp.assets.cache new file mode 100644 index 0000000..974c5e9 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_a4wmzmfl_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_a4wmzmfl_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_a4wmzmfl_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_amdkpbr0_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_amdkpbr0_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_amdkpbr0_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_amdkpbr0_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_amdkpbr0_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_amdkpbr0_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_amdkpbr0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_amdkpbr0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..39a331c --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_amdkpbr0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_amdkpbr0_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_amdkpbr0_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_amdkpbr0_wpftmp.assets.cache new file mode 100644 index 0000000..cde87c1 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_amdkpbr0_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_amdkpbr0_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_amdkpbr0_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_aqrpkihh_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_aqrpkihh_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_aqrpkihh_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_aqrpkihh_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_aqrpkihh_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_aqrpkihh_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_aqrpkihh_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_aqrpkihh_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..9e25d86 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_aqrpkihh_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_aqrpkihh_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_aqrpkihh_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_aqrpkihh_wpftmp.assets.cache new file mode 100644 index 0000000..81e38ba Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_aqrpkihh_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_aqrpkihh_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_aqrpkihh_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_arh2c3ko_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_arh2c3ko_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_arh2c3ko_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_arh2c3ko_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_arh2c3ko_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_arh2c3ko_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_arh2c3ko_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_arh2c3ko_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..956fa18 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_arh2c3ko_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_arh2c3ko_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_arh2c3ko_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_arh2c3ko_wpftmp.assets.cache new file mode 100644 index 0000000..6ed6b05 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_arh2c3ko_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_arh2c3ko_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_arh2c3ko_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_atc2yrw5_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_atc2yrw5_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_atc2yrw5_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_atc2yrw5_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_atc2yrw5_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_atc2yrw5_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_atc2yrw5_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_atc2yrw5_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..57d20f1 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_atc2yrw5_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_atc2yrw5_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_atc2yrw5_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_atc2yrw5_wpftmp.assets.cache new file mode 100644 index 0000000..5315a2e Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_atc2yrw5_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_atc2yrw5_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_atc2yrw5_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_avzgznig_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_avzgznig_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_avzgznig_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_avzgznig_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_avzgznig_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_avzgznig_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_avzgznig_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_avzgznig_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..11e611a --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_avzgznig_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_avzgznig_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_avzgznig_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_avzgznig_wpftmp.assets.cache new file mode 100644 index 0000000..80e3158 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_avzgznig_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_avzgznig_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_avzgznig_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_axwftnyo_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_axwftnyo_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_axwftnyo_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_axwftnyo_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_axwftnyo_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_axwftnyo_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_axwftnyo_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_axwftnyo_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b535bcc --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_axwftnyo_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_axwftnyo_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_axwftnyo_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_axwftnyo_wpftmp.assets.cache new file mode 100644 index 0000000..f1f7936 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_axwftnyo_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_axwftnyo_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_axwftnyo_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_azyleifz_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_azyleifz_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_azyleifz_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_azyleifz_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_azyleifz_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_azyleifz_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_azyleifz_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_azyleifz_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..19fbf47 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_azyleifz_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_azyleifz_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_azyleifz_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_azyleifz_wpftmp.assets.cache new file mode 100644 index 0000000..b74c210 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_azyleifz_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_azyleifz_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_azyleifz_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_baywr005_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_baywr005_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_baywr005_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_baywr005_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_baywr005_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_baywr005_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_baywr005_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_baywr005_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..9dc409b --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_baywr005_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_baywr005_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_baywr005_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_baywr005_wpftmp.assets.cache new file mode 100644 index 0000000..5713041 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_baywr005_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_baywr005_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_baywr005_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_bliqwdsb_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_bliqwdsb_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_bliqwdsb_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_bliqwdsb_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_bliqwdsb_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_bliqwdsb_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_bliqwdsb_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_bliqwdsb_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..4a34a16 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_bliqwdsb_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_bliqwdsb_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_bliqwdsb_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_bliqwdsb_wpftmp.assets.cache new file mode 100644 index 0000000..c6e93ed Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_bliqwdsb_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_bliqwdsb_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_bliqwdsb_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_brn3hpyc_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_brn3hpyc_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_brn3hpyc_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_brn3hpyc_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_brn3hpyc_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_brn3hpyc_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_brn3hpyc_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_brn3hpyc_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..fad8bce --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_brn3hpyc_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_brn3hpyc_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_brn3hpyc_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_brn3hpyc_wpftmp.assets.cache new file mode 100644 index 0000000..60fd11b Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_brn3hpyc_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_brn3hpyc_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_brn3hpyc_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_bu5vuuao_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_bu5vuuao_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_bu5vuuao_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_bu5vuuao_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_bu5vuuao_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_bu5vuuao_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_bu5vuuao_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_bu5vuuao_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..751c7c2 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_bu5vuuao_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_bu5vuuao_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_bu5vuuao_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_bu5vuuao_wpftmp.assets.cache new file mode 100644 index 0000000..2c19ae7 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_bu5vuuao_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_bu5vuuao_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_bu5vuuao_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_c3tzkgof_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_c3tzkgof_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_c3tzkgof_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_c3tzkgof_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_c3tzkgof_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_c3tzkgof_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_c3tzkgof_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_c3tzkgof_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d562de3 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_c3tzkgof_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_c3tzkgof_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_c3tzkgof_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_c3tzkgof_wpftmp.assets.cache new file mode 100644 index 0000000..22cbdb8 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_c3tzkgof_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_c3tzkgof_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_c3tzkgof_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_c4ch0hni_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_c4ch0hni_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_c4ch0hni_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_c4ch0hni_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_c4ch0hni_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_c4ch0hni_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_c4ch0hni_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_c4ch0hni_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..91357dd --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_c4ch0hni_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_c4ch0hni_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_c4ch0hni_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_c4ch0hni_wpftmp.assets.cache new file mode 100644 index 0000000..74c9f8b Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_c4ch0hni_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_c4ch0hni_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_c4ch0hni_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_c50q2n5i_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_c50q2n5i_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_c50q2n5i_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_c50q2n5i_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_c50q2n5i_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_c50q2n5i_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_c50q2n5i_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_c50q2n5i_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..8d9b093 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_c50q2n5i_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_c50q2n5i_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_c50q2n5i_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_c50q2n5i_wpftmp.assets.cache new file mode 100644 index 0000000..103edaa Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_c50q2n5i_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_c50q2n5i_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_c50q2n5i_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_c5b5qytz_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_c5b5qytz_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_c5b5qytz_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_c5b5qytz_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_c5b5qytz_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_c5b5qytz_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_c5b5qytz_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_c5b5qytz_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..1260237 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_c5b5qytz_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_c5b5qytz_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_c5b5qytz_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_c5b5qytz_wpftmp.assets.cache new file mode 100644 index 0000000..d284be1 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_c5b5qytz_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_c5b5qytz_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_c5b5qytz_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_cbtxuw1n_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_cbtxuw1n_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_cbtxuw1n_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_cbtxuw1n_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_cbtxuw1n_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_cbtxuw1n_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_cbtxuw1n_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_cbtxuw1n_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..c1fb03d --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_cbtxuw1n_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_cbtxuw1n_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_cbtxuw1n_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_cbtxuw1n_wpftmp.assets.cache new file mode 100644 index 0000000..ba7562a Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_cbtxuw1n_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_cbtxuw1n_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_cbtxuw1n_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_cdurvuai_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_cdurvuai_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_cdurvuai_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_cdurvuai_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_cdurvuai_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_cdurvuai_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_cdurvuai_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_cdurvuai_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..04a7b0d --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_cdurvuai_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_cdurvuai_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_cdurvuai_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_cdurvuai_wpftmp.assets.cache new file mode 100644 index 0000000..b720d8c Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_cdurvuai_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_cdurvuai_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_cdurvuai_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_cegxa4ga_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_cegxa4ga_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_cegxa4ga_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_cegxa4ga_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_cegxa4ga_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_cegxa4ga_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_cegxa4ga_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_cegxa4ga_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..42cc77b --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_cegxa4ga_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_cegxa4ga_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_cegxa4ga_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_cegxa4ga_wpftmp.assets.cache new file mode 100644 index 0000000..02155f9 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_cegxa4ga_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_cegxa4ga_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_cegxa4ga_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_cfew4qqk_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_cfew4qqk_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_cfew4qqk_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_cfew4qqk_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_cfew4qqk_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_cfew4qqk_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_cfew4qqk_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_cfew4qqk_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..7b2e301 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_cfew4qqk_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_cfew4qqk_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_cfew4qqk_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_cfew4qqk_wpftmp.assets.cache new file mode 100644 index 0000000..d6e0887 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_cfew4qqk_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_cfew4qqk_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_cfew4qqk_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_cgtifacj_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_cgtifacj_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_cgtifacj_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_cgtifacj_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_cgtifacj_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_cgtifacj_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_cgtifacj_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_cgtifacj_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..e393a5d --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_cgtifacj_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_cgtifacj_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_cgtifacj_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_cgtifacj_wpftmp.assets.cache new file mode 100644 index 0000000..c2d3515 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_cgtifacj_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_cgtifacj_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_cgtifacj_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_cjzvewlp_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_cjzvewlp_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_cjzvewlp_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_cjzvewlp_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_cjzvewlp_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_cjzvewlp_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_cjzvewlp_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_cjzvewlp_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..ccd6dd6 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_cjzvewlp_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_cjzvewlp_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_cjzvewlp_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_cjzvewlp_wpftmp.assets.cache new file mode 100644 index 0000000..3121930 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_cjzvewlp_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_cjzvewlp_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_cjzvewlp_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ckjufj5s_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_ckjufj5s_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ckjufj5s_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ckjufj5s_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_ckjufj5s_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ckjufj5s_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ckjufj5s_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_ckjufj5s_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..43001ce --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ckjufj5s_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_ckjufj5s_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ckjufj5s_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_ckjufj5s_wpftmp.assets.cache new file mode 100644 index 0000000..6b77801 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_ckjufj5s_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ckjufj5s_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_ckjufj5s_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_cm0jj1bq_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_cm0jj1bq_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_cm0jj1bq_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_cm0jj1bq_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_cm0jj1bq_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_cm0jj1bq_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_cm0jj1bq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_cm0jj1bq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..33dbc99 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_cm0jj1bq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_cm0jj1bq_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_cm0jj1bq_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_cm0jj1bq_wpftmp.assets.cache new file mode 100644 index 0000000..eff5a02 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_cm0jj1bq_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_cm0jj1bq_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_cm0jj1bq_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_cxc1bedm_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_cxc1bedm_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_cxc1bedm_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_cxc1bedm_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_cxc1bedm_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_cxc1bedm_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_cxc1bedm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_cxc1bedm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..22f45e9 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_cxc1bedm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_cxc1bedm_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_cxc1bedm_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_cxc1bedm_wpftmp.assets.cache new file mode 100644 index 0000000..cf277f0 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_cxc1bedm_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_cxc1bedm_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_cxc1bedm_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_d5udtu5c_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_d5udtu5c_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_d5udtu5c_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_d5udtu5c_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_d5udtu5c_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_d5udtu5c_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_d5udtu5c_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_d5udtu5c_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..644f70e --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_d5udtu5c_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_d5udtu5c_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_d5udtu5c_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_d5udtu5c_wpftmp.assets.cache new file mode 100644 index 0000000..2a2f36c Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_d5udtu5c_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_d5udtu5c_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_d5udtu5c_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_dbzrf0mm_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_dbzrf0mm_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_dbzrf0mm_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_dbzrf0mm_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_dbzrf0mm_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_dbzrf0mm_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_dbzrf0mm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_dbzrf0mm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..93944bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_dbzrf0mm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_dbzrf0mm_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_dbzrf0mm_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_dbzrf0mm_wpftmp.assets.cache new file mode 100644 index 0000000..5453147 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_dbzrf0mm_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_dbzrf0mm_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_dbzrf0mm_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_djrfogs3_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_djrfogs3_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_djrfogs3_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_djrfogs3_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_djrfogs3_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_djrfogs3_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_djrfogs3_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_djrfogs3_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..f78ba3a --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_djrfogs3_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_djrfogs3_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_djrfogs3_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_djrfogs3_wpftmp.assets.cache new file mode 100644 index 0000000..31493d6 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_djrfogs3_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_djrfogs3_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_djrfogs3_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_dl2vwprl_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_dl2vwprl_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_dl2vwprl_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_dl2vwprl_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_dl2vwprl_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_dl2vwprl_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_dl2vwprl_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_dl2vwprl_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..6bcb543 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_dl2vwprl_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_dl2vwprl_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_dl2vwprl_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_dl2vwprl_wpftmp.assets.cache new file mode 100644 index 0000000..4a0be12 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_dl2vwprl_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_dl2vwprl_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_dl2vwprl_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_dli4mebn_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_dli4mebn_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_dli4mebn_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_dli4mebn_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_dli4mebn_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_dli4mebn_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_dli4mebn_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_dli4mebn_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..7e05edb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_dli4mebn_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_dli4mebn_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_dli4mebn_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_dli4mebn_wpftmp.assets.cache new file mode 100644 index 0000000..d3f5296 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_dli4mebn_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_dli4mebn_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_dli4mebn_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_dotijwcm_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_dotijwcm_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_dotijwcm_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_dotijwcm_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_dotijwcm_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_dotijwcm_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_dotijwcm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_dotijwcm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..2fb5692 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_dotijwcm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_dotijwcm_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_dotijwcm_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_dotijwcm_wpftmp.assets.cache new file mode 100644 index 0000000..ab9abe2 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_dotijwcm_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_dotijwcm_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_dotijwcm_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_dr413bkk_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_dr413bkk_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_dr413bkk_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_dr413bkk_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_dr413bkk_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_dr413bkk_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_dr413bkk_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_dr413bkk_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..00a1484 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_dr413bkk_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_dr413bkk_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_dr413bkk_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_dr413bkk_wpftmp.assets.cache new file mode 100644 index 0000000..f526366 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_dr413bkk_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_dr413bkk_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_dr413bkk_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_dyna3lzj_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_dyna3lzj_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_dyna3lzj_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_dyna3lzj_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_dyna3lzj_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_dyna3lzj_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_dyna3lzj_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_dyna3lzj_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..ff8087c --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_dyna3lzj_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_dyna3lzj_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_dyna3lzj_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_dyna3lzj_wpftmp.assets.cache new file mode 100644 index 0000000..627a4f1 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_dyna3lzj_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_dyna3lzj_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_dyna3lzj_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_e15zdq5w_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_e15zdq5w_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_e15zdq5w_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_e15zdq5w_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_e15zdq5w_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_e15zdq5w_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_e15zdq5w_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_e15zdq5w_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..f367f5e --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_e15zdq5w_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_e15zdq5w_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_e15zdq5w_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_e15zdq5w_wpftmp.assets.cache new file mode 100644 index 0000000..f21c16c Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_e15zdq5w_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_e15zdq5w_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_e15zdq5w_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_e2zm2muv_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_e2zm2muv_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_e2zm2muv_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_e2zm2muv_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_e2zm2muv_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_e2zm2muv_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_e2zm2muv_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_e2zm2muv_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..32f5076 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_e2zm2muv_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_e2zm2muv_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_e2zm2muv_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_e2zm2muv_wpftmp.assets.cache new file mode 100644 index 0000000..6ae29d3 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_e2zm2muv_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_e2zm2muv_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_e2zm2muv_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ecmj5utx_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_ecmj5utx_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ecmj5utx_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ecmj5utx_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_ecmj5utx_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ecmj5utx_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ecmj5utx_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_ecmj5utx_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..ffabe71 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ecmj5utx_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_ecmj5utx_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ecmj5utx_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_ecmj5utx_wpftmp.assets.cache new file mode 100644 index 0000000..72a51bb Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_ecmj5utx_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ecmj5utx_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_ecmj5utx_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_eealcyr1_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_eealcyr1_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_eealcyr1_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_eealcyr1_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_eealcyr1_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_eealcyr1_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_eealcyr1_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_eealcyr1_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b726146 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_eealcyr1_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_eealcyr1_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_eealcyr1_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_eealcyr1_wpftmp.assets.cache new file mode 100644 index 0000000..423a810 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_eealcyr1_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_eealcyr1_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_eealcyr1_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ege2qapb_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_ege2qapb_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ege2qapb_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ege2qapb_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_ege2qapb_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ege2qapb_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ege2qapb_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_ege2qapb_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..c844890 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ege2qapb_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_ege2qapb_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ege2qapb_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_ege2qapb_wpftmp.assets.cache new file mode 100644 index 0000000..b148460 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_ege2qapb_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ege2qapb_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_ege2qapb_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ep3ahplx_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_ep3ahplx_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ep3ahplx_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ep3ahplx_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_ep3ahplx_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ep3ahplx_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ep3ahplx_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_ep3ahplx_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..509d876 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ep3ahplx_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_ep3ahplx_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ep3ahplx_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_ep3ahplx_wpftmp.assets.cache new file mode 100644 index 0000000..89c4ca4 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_ep3ahplx_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ep3ahplx_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_ep3ahplx_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_etwxt0lr_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_etwxt0lr_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_etwxt0lr_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_etwxt0lr_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_etwxt0lr_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_etwxt0lr_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_etwxt0lr_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_etwxt0lr_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..6156cdb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_etwxt0lr_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_etwxt0lr_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_etwxt0lr_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_etwxt0lr_wpftmp.assets.cache new file mode 100644 index 0000000..2c8dcd2 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_etwxt0lr_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_etwxt0lr_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_etwxt0lr_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ev0ej032_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_ev0ej032_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ev0ej032_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ev0ej032_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_ev0ej032_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ev0ej032_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ev0ej032_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_ev0ej032_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..5785752 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ev0ej032_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_ev0ej032_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ev0ej032_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_ev0ej032_wpftmp.assets.cache new file mode 100644 index 0000000..64336dd Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_ev0ej032_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ev0ej032_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_ev0ej032_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ewsxwrmp_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_ewsxwrmp_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ewsxwrmp_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ewsxwrmp_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_ewsxwrmp_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ewsxwrmp_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ewsxwrmp_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_ewsxwrmp_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..25a7306 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ewsxwrmp_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_ewsxwrmp_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ewsxwrmp_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_ewsxwrmp_wpftmp.assets.cache new file mode 100644 index 0000000..985cf27 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_ewsxwrmp_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ewsxwrmp_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_ewsxwrmp_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ewuj1sp3_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_ewuj1sp3_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ewuj1sp3_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ewuj1sp3_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_ewuj1sp3_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ewuj1sp3_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ewuj1sp3_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_ewuj1sp3_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..e69af7b --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ewuj1sp3_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_ewuj1sp3_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ewuj1sp3_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_ewuj1sp3_wpftmp.assets.cache new file mode 100644 index 0000000..9a70cdd Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_ewuj1sp3_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ewuj1sp3_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_ewuj1sp3_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_eysqfek1_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_eysqfek1_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_eysqfek1_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_eysqfek1_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_eysqfek1_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_eysqfek1_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_eysqfek1_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_eysqfek1_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..97deb26 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_eysqfek1_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_eysqfek1_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_eysqfek1_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_eysqfek1_wpftmp.assets.cache new file mode 100644 index 0000000..ff2086b Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_eysqfek1_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_eysqfek1_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_eysqfek1_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_f240kmse_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_f240kmse_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_f240kmse_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_f240kmse_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_f240kmse_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_f240kmse_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_f240kmse_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_f240kmse_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..557e518 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_f240kmse_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_f240kmse_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_f240kmse_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_f240kmse_wpftmp.assets.cache new file mode 100644 index 0000000..a2f0b95 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_f240kmse_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_f240kmse_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_f240kmse_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_f2aiaa3z_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_f2aiaa3z_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_f2aiaa3z_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_f2aiaa3z_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_f2aiaa3z_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_f2aiaa3z_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_f2aiaa3z_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_f2aiaa3z_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..36a575d --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_f2aiaa3z_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_f2aiaa3z_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_f2aiaa3z_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_f2aiaa3z_wpftmp.assets.cache new file mode 100644 index 0000000..7f92e60 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_f2aiaa3z_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_f2aiaa3z_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_f2aiaa3z_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_f4a0wfck_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_f4a0wfck_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_f4a0wfck_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_f4a0wfck_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_f4a0wfck_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_f4a0wfck_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_f4a0wfck_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_f4a0wfck_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..7de45e1 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_f4a0wfck_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_f4a0wfck_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_f4a0wfck_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_f4a0wfck_wpftmp.assets.cache new file mode 100644 index 0000000..1ba31eb Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_f4a0wfck_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_f4a0wfck_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_f4a0wfck_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_fcjbsxzl_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_fcjbsxzl_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_fcjbsxzl_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_fcjbsxzl_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_fcjbsxzl_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_fcjbsxzl_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_fcjbsxzl_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_fcjbsxzl_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d7871a8 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_fcjbsxzl_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_fcjbsxzl_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_fcjbsxzl_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_fcjbsxzl_wpftmp.assets.cache new file mode 100644 index 0000000..5922b4e Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_fcjbsxzl_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_fcjbsxzl_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_fcjbsxzl_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_fddixwo4_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_fddixwo4_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_fddixwo4_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_fddixwo4_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_fddixwo4_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_fddixwo4_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_fddixwo4_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_fddixwo4_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..5a81bd6 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_fddixwo4_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_fddixwo4_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_fddixwo4_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_fddixwo4_wpftmp.assets.cache new file mode 100644 index 0000000..2956f32 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_fddixwo4_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_fddixwo4_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_fddixwo4_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_fio1gqk2_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_fio1gqk2_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_fio1gqk2_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_fio1gqk2_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_fio1gqk2_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_fio1gqk2_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_fio1gqk2_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_fio1gqk2_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b9e2d0a --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_fio1gqk2_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_fio1gqk2_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_fio1gqk2_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_fio1gqk2_wpftmp.assets.cache new file mode 100644 index 0000000..1803dcd Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_fio1gqk2_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_fio1gqk2_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_fio1gqk2_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_fkp3vupo_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_fkp3vupo_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_fkp3vupo_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_fkp3vupo_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_fkp3vupo_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_fkp3vupo_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_fkp3vupo_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_fkp3vupo_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..06be0ec --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_fkp3vupo_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_fkp3vupo_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_fkp3vupo_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_fkp3vupo_wpftmp.assets.cache new file mode 100644 index 0000000..e462cd2 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_fkp3vupo_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_fkp3vupo_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_fkp3vupo_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_fp3pp4fi_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_fp3pp4fi_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_fp3pp4fi_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_fp3pp4fi_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_fp3pp4fi_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_fp3pp4fi_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_fp3pp4fi_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_fp3pp4fi_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..ec81683 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_fp3pp4fi_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_fp3pp4fi_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_fp3pp4fi_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_fp3pp4fi_wpftmp.assets.cache new file mode 100644 index 0000000..569c5b3 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_fp3pp4fi_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_fp3pp4fi_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_fp3pp4fi_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ftvb5pdf_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_ftvb5pdf_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ftvb5pdf_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ftvb5pdf_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_ftvb5pdf_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ftvb5pdf_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ftvb5pdf_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_ftvb5pdf_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..3d6ca9f --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ftvb5pdf_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_ftvb5pdf_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ftvb5pdf_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_ftvb5pdf_wpftmp.assets.cache new file mode 100644 index 0000000..ede98d2 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_ftvb5pdf_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ftvb5pdf_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_ftvb5pdf_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_fu2f4et5_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_fu2f4et5_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_fu2f4et5_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_fu2f4et5_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_fu2f4et5_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_fu2f4et5_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_fu2f4et5_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_fu2f4et5_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..e9a40dc --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_fu2f4et5_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_fu2f4et5_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_fu2f4et5_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_fu2f4et5_wpftmp.assets.cache new file mode 100644 index 0000000..7d7157d Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_fu2f4et5_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_fu2f4et5_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_fu2f4et5_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_g0qdozst_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_g0qdozst_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_g0qdozst_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_g0qdozst_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_g0qdozst_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_g0qdozst_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_g0qdozst_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_g0qdozst_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..f6de37f --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_g0qdozst_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_g0qdozst_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_g0qdozst_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_g0qdozst_wpftmp.assets.cache new file mode 100644 index 0000000..3367c70 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_g0qdozst_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_g0qdozst_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_g0qdozst_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_g1mgqmud_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_g1mgqmud_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_g1mgqmud_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_g1mgqmud_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_g1mgqmud_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_g1mgqmud_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_g1mgqmud_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_g1mgqmud_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..29b5f79 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_g1mgqmud_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_g1mgqmud_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_g1mgqmud_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_g1mgqmud_wpftmp.assets.cache new file mode 100644 index 0000000..889ef5f Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_g1mgqmud_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_g1mgqmud_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_g1mgqmud_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_gbuk5fed_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_gbuk5fed_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_gbuk5fed_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_gbuk5fed_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_gbuk5fed_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_gbuk5fed_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_gbuk5fed_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_gbuk5fed_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..6e5e91a --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_gbuk5fed_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_gbuk5fed_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_gbuk5fed_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_gbuk5fed_wpftmp.assets.cache new file mode 100644 index 0000000..a1929c5 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_gbuk5fed_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_gbuk5fed_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_gbuk5fed_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ggk4sem3_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_ggk4sem3_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ggk4sem3_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ggk4sem3_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_ggk4sem3_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ggk4sem3_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ggk4sem3_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_ggk4sem3_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..90a8152 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ggk4sem3_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_ggk4sem3_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ggk4sem3_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_ggk4sem3_wpftmp.assets.cache new file mode 100644 index 0000000..270a5b6 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_ggk4sem3_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ggk4sem3_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_ggk4sem3_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_gi4qejin_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_gi4qejin_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_gi4qejin_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_gi4qejin_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_gi4qejin_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_gi4qejin_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_gi4qejin_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_gi4qejin_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..840e9c0 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_gi4qejin_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_gi4qejin_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_gi4qejin_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_gi4qejin_wpftmp.assets.cache new file mode 100644 index 0000000..4b9705d Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_gi4qejin_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_gi4qejin_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_gi4qejin_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_glkjit5e_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_glkjit5e_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_glkjit5e_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_glkjit5e_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_glkjit5e_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_glkjit5e_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_glkjit5e_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_glkjit5e_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..adaeddb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_glkjit5e_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_glkjit5e_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_glkjit5e_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_glkjit5e_wpftmp.assets.cache new file mode 100644 index 0000000..cee6d33 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_glkjit5e_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_glkjit5e_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_glkjit5e_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_gnkjjcpm_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_gnkjjcpm_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_gnkjjcpm_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_gnkjjcpm_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_gnkjjcpm_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_gnkjjcpm_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_gnkjjcpm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_gnkjjcpm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d1e7644 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_gnkjjcpm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_gnkjjcpm_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_gnkjjcpm_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_gnkjjcpm_wpftmp.assets.cache new file mode 100644 index 0000000..46e7489 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_gnkjjcpm_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_gnkjjcpm_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_gnkjjcpm_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_gnq343kv_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_gnq343kv_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_gnq343kv_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_gnq343kv_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_gnq343kv_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_gnq343kv_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_gnq343kv_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_gnq343kv_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..bd5f575 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_gnq343kv_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_gnq343kv_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_gnq343kv_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_gnq343kv_wpftmp.assets.cache new file mode 100644 index 0000000..cdb4be3 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_gnq343kv_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_gnq343kv_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_gnq343kv_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_gyfohncq_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_gyfohncq_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_gyfohncq_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_gyfohncq_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_gyfohncq_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_gyfohncq_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_gyfohncq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_gyfohncq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..99f0d22 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_gyfohncq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_gyfohncq_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_gyfohncq_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_gyfohncq_wpftmp.assets.cache new file mode 100644 index 0000000..ed9aaf1 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_gyfohncq_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_gyfohncq_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_gyfohncq_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_gyykivfo_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_gyykivfo_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_gyykivfo_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_gyykivfo_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_gyykivfo_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_gyykivfo_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_gyykivfo_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_gyykivfo_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..9a493d2 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_gyykivfo_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_gyykivfo_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_gyykivfo_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_gyykivfo_wpftmp.assets.cache new file mode 100644 index 0000000..e1bea80 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_gyykivfo_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_gyykivfo_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_gyykivfo_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_h1adeeyl_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_h1adeeyl_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_h1adeeyl_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_h1adeeyl_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_h1adeeyl_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_h1adeeyl_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_h1adeeyl_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_h1adeeyl_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..70ad862 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_h1adeeyl_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_h1adeeyl_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_h1adeeyl_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_h1adeeyl_wpftmp.assets.cache new file mode 100644 index 0000000..5781681 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_h1adeeyl_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_h1adeeyl_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_h1adeeyl_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_h1ehlygl_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_h1ehlygl_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_h1ehlygl_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_h1ehlygl_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_h1ehlygl_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_h1ehlygl_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_h1ehlygl_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_h1ehlygl_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..c2be9f9 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_h1ehlygl_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_h1ehlygl_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_h1ehlygl_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_h1ehlygl_wpftmp.assets.cache new file mode 100644 index 0000000..eb6fd1a Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_h1ehlygl_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_h1ehlygl_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_h1ehlygl_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_h512sdcx_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_h512sdcx_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_h512sdcx_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_h512sdcx_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_h512sdcx_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_h512sdcx_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_h512sdcx_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_h512sdcx_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..2816847 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_h512sdcx_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_h512sdcx_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_h512sdcx_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_h512sdcx_wpftmp.assets.cache new file mode 100644 index 0000000..07dac22 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_h512sdcx_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_h512sdcx_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_h512sdcx_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hhlxbo3n_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_hhlxbo3n_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_hhlxbo3n_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hhlxbo3n_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_hhlxbo3n_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_hhlxbo3n_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hhlxbo3n_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_hhlxbo3n_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..2dfd889 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_hhlxbo3n_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_hhlxbo3n_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hhlxbo3n_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_hhlxbo3n_wpftmp.assets.cache new file mode 100644 index 0000000..6ec987a Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_hhlxbo3n_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hhlxbo3n_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_hhlxbo3n_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hiodnfg5_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_hiodnfg5_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_hiodnfg5_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hiodnfg5_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_hiodnfg5_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_hiodnfg5_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hiodnfg5_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_hiodnfg5_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..7d37c8c --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_hiodnfg5_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_hiodnfg5_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hiodnfg5_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_hiodnfg5_wpftmp.assets.cache new file mode 100644 index 0000000..f673d3d Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_hiodnfg5_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hiodnfg5_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_hiodnfg5_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hippay5b_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_hippay5b_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_hippay5b_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hippay5b_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_hippay5b_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_hippay5b_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hippay5b_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_hippay5b_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..849ea52 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_hippay5b_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_hippay5b_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hippay5b_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_hippay5b_wpftmp.assets.cache new file mode 100644 index 0000000..4dddb47 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_hippay5b_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hippay5b_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_hippay5b_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hqa1jy3f_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_hqa1jy3f_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_hqa1jy3f_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hqa1jy3f_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_hqa1jy3f_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_hqa1jy3f_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hqa1jy3f_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_hqa1jy3f_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..f414fb7 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_hqa1jy3f_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_hqa1jy3f_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hqa1jy3f_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_hqa1jy3f_wpftmp.assets.cache new file mode 100644 index 0000000..f7baecf Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_hqa1jy3f_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hqa1jy3f_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_hqa1jy3f_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hrlqf0tw_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_hrlqf0tw_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_hrlqf0tw_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hrlqf0tw_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_hrlqf0tw_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_hrlqf0tw_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hrlqf0tw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_hrlqf0tw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..0cbc588 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_hrlqf0tw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_hrlqf0tw_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hrlqf0tw_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_hrlqf0tw_wpftmp.assets.cache new file mode 100644 index 0000000..69172d8 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_hrlqf0tw_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hrlqf0tw_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_hrlqf0tw_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hsrxtbd3_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_hsrxtbd3_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_hsrxtbd3_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hsrxtbd3_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_hsrxtbd3_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_hsrxtbd3_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hsrxtbd3_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_hsrxtbd3_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..5fba44b --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_hsrxtbd3_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_hsrxtbd3_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hsrxtbd3_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_hsrxtbd3_wpftmp.assets.cache new file mode 100644 index 0000000..4bf3f8d Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_hsrxtbd3_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hwbx14i2_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_hwbx14i2_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_hwbx14i2_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hwbx14i2_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_hwbx14i2_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_hwbx14i2_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hwbx14i2_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_hwbx14i2_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..2f926ec --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_hwbx14i2_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_hwbx14i2_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hwbx14i2_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_hwbx14i2_wpftmp.assets.cache new file mode 100644 index 0000000..840768e Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_hwbx14i2_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hwbx14i2_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_hwbx14i2_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hx11nbre_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_hx11nbre_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_hx11nbre_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hx11nbre_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_hx11nbre_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_hx11nbre_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hx11nbre_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_hx11nbre_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..dfc0844 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_hx11nbre_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_hx11nbre_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hx11nbre_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_hx11nbre_wpftmp.assets.cache new file mode 100644 index 0000000..79a7837 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_hx11nbre_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hx11nbre_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_hx11nbre_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hyn551tl_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_hyn551tl_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_hyn551tl_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hyn551tl_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_hyn551tl_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_hyn551tl_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hyn551tl_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_hyn551tl_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..41545b9 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_hyn551tl_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_hyn551tl_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hyn551tl_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_hyn551tl_wpftmp.assets.cache new file mode 100644 index 0000000..3503c51 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_hyn551tl_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hyn551tl_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_hyn551tl_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hz0rjwji_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_hz0rjwji_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_hz0rjwji_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hz0rjwji_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_hz0rjwji_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_hz0rjwji_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hz0rjwji_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_hz0rjwji_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..ed6aed8 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_hz0rjwji_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_hz0rjwji_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hz0rjwji_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_hz0rjwji_wpftmp.assets.cache new file mode 100644 index 0000000..85e24dd Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_hz0rjwji_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hz0rjwji_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_hz0rjwji_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hzdan2bi_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_hzdan2bi_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_hzdan2bi_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hzdan2bi_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_hzdan2bi_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_hzdan2bi_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hzdan2bi_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_hzdan2bi_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..4971346 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_hzdan2bi_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_hzdan2bi_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hzdan2bi_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_hzdan2bi_wpftmp.assets.cache new file mode 100644 index 0000000..d06cab7 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_hzdan2bi_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_hzdan2bi_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_hzdan2bi_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_i0le3qgf_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_i0le3qgf_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_i0le3qgf_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_i0le3qgf_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_i0le3qgf_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_i0le3qgf_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_i0le3qgf_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_i0le3qgf_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..37420c5 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_i0le3qgf_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_i0le3qgf_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_i0le3qgf_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_i0le3qgf_wpftmp.assets.cache new file mode 100644 index 0000000..50647c7 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_i0le3qgf_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_i0le3qgf_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_i0le3qgf_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_i5jvuezp_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_i5jvuezp_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_i5jvuezp_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_i5jvuezp_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_i5jvuezp_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_i5jvuezp_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_i5jvuezp_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_i5jvuezp_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..ecedc41 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_i5jvuezp_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_i5jvuezp_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_i5jvuezp_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_i5jvuezp_wpftmp.assets.cache new file mode 100644 index 0000000..2821616 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_i5jvuezp_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_i5jvuezp_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_i5jvuezp_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_i5myroia_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_i5myroia_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_i5myroia_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_i5myroia_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_i5myroia_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_i5myroia_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_i5myroia_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_i5myroia_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..de036b1 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_i5myroia_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_i5myroia_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_i5myroia_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_i5myroia_wpftmp.assets.cache new file mode 100644 index 0000000..f19c7d3 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_i5myroia_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_i5myroia_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_i5myroia_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_i5xjpmw5_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_i5xjpmw5_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_i5xjpmw5_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_i5xjpmw5_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_i5xjpmw5_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_i5xjpmw5_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_i5xjpmw5_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_i5xjpmw5_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..c5f7247 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_i5xjpmw5_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_i5xjpmw5_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_i5xjpmw5_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_i5xjpmw5_wpftmp.assets.cache new file mode 100644 index 0000000..7159c5f Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_i5xjpmw5_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_i5xjpmw5_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_i5xjpmw5_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_iczss2ku_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_iczss2ku_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_iczss2ku_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_iczss2ku_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_iczss2ku_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_iczss2ku_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_iczss2ku_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_iczss2ku_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..afd569d --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_iczss2ku_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_iczss2ku_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_iczss2ku_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_iczss2ku_wpftmp.assets.cache new file mode 100644 index 0000000..d901be5 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_iczss2ku_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_iczss2ku_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_iczss2ku_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_igyp2nis_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_igyp2nis_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_igyp2nis_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_igyp2nis_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_igyp2nis_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_igyp2nis_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_igyp2nis_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_igyp2nis_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..9348832 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_igyp2nis_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_igyp2nis_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_igyp2nis_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_igyp2nis_wpftmp.assets.cache new file mode 100644 index 0000000..0a8c4d7 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_igyp2nis_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_igyp2nis_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_igyp2nis_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_inn1sbw2_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_inn1sbw2_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_inn1sbw2_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_inn1sbw2_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_inn1sbw2_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_inn1sbw2_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_inn1sbw2_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_inn1sbw2_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..79ed4e7 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_inn1sbw2_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_inn1sbw2_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_inn1sbw2_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_inn1sbw2_wpftmp.assets.cache new file mode 100644 index 0000000..6125145 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_inn1sbw2_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_inn1sbw2_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_inn1sbw2_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_iu1icl2z_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_iu1icl2z_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_iu1icl2z_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_iu1icl2z_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_iu1icl2z_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_iu1icl2z_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_iu1icl2z_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_iu1icl2z_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..a269120 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_iu1icl2z_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_iu1icl2z_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_iu1icl2z_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_iu1icl2z_wpftmp.assets.cache new file mode 100644 index 0000000..d638c14 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_iu1icl2z_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_iu1icl2z_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_iu1icl2z_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_j5r2qs4u_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_j5r2qs4u_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_j5r2qs4u_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_j5r2qs4u_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_j5r2qs4u_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_j5r2qs4u_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_j5r2qs4u_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_j5r2qs4u_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..bff04df --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_j5r2qs4u_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_j5r2qs4u_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_j5r2qs4u_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_j5r2qs4u_wpftmp.assets.cache new file mode 100644 index 0000000..28fe3d3 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_j5r2qs4u_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_j5r2qs4u_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_j5r2qs4u_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_jdhsw0wm_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_jdhsw0wm_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_jdhsw0wm_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_jdhsw0wm_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_jdhsw0wm_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_jdhsw0wm_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_jdhsw0wm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_jdhsw0wm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d838d42 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_jdhsw0wm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_jdhsw0wm_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_jdhsw0wm_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_jdhsw0wm_wpftmp.assets.cache new file mode 100644 index 0000000..f4f4bfd Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_jdhsw0wm_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_jdhsw0wm_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_jdhsw0wm_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_jip2z2pe_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_jip2z2pe_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_jip2z2pe_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_jip2z2pe_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_jip2z2pe_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_jip2z2pe_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_jip2z2pe_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_jip2z2pe_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..2657eca --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_jip2z2pe_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_jip2z2pe_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_jip2z2pe_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_jip2z2pe_wpftmp.assets.cache new file mode 100644 index 0000000..e514660 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_jip2z2pe_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_jip2z2pe_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_jip2z2pe_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_k2pjuox5_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_k2pjuox5_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_k2pjuox5_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_k2pjuox5_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_k2pjuox5_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_k2pjuox5_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_k2pjuox5_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_k2pjuox5_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..3290029 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_k2pjuox5_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_k2pjuox5_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_k2pjuox5_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_k2pjuox5_wpftmp.assets.cache new file mode 100644 index 0000000..c90dbb3 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_k2pjuox5_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_k2pjuox5_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_k2pjuox5_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_k3k2qbxw_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_k3k2qbxw_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_k3k2qbxw_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_k3k2qbxw_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_k3k2qbxw_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_k3k2qbxw_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_k3k2qbxw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_k3k2qbxw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..cb8b17c --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_k3k2qbxw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_k3k2qbxw_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_k3k2qbxw_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_k3k2qbxw_wpftmp.assets.cache new file mode 100644 index 0000000..135416e Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_k3k2qbxw_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_k3k2qbxw_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_k3k2qbxw_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_k54bhqqw_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_k54bhqqw_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_k54bhqqw_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_k54bhqqw_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_k54bhqqw_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_k54bhqqw_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_k54bhqqw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_k54bhqqw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..aa87338 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_k54bhqqw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_k54bhqqw_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_k54bhqqw_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_k54bhqqw_wpftmp.assets.cache new file mode 100644 index 0000000..2c4c281 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_k54bhqqw_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kcs3nnz5_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_kcs3nnz5_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_kcs3nnz5_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kcs3nnz5_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_kcs3nnz5_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_kcs3nnz5_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kcs3nnz5_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_kcs3nnz5_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..2302c5d --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_kcs3nnz5_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_kcs3nnz5_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kcs3nnz5_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_kcs3nnz5_wpftmp.assets.cache new file mode 100644 index 0000000..645aa82 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_kcs3nnz5_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kcs3nnz5_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_kcs3nnz5_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kemdmm5u_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_kemdmm5u_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_kemdmm5u_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kemdmm5u_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_kemdmm5u_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_kemdmm5u_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kemdmm5u_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_kemdmm5u_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..62bd30f --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_kemdmm5u_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_kemdmm5u_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kemdmm5u_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_kemdmm5u_wpftmp.assets.cache new file mode 100644 index 0000000..fb05211 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_kemdmm5u_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kemdmm5u_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_kemdmm5u_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kfev5ieg_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_kfev5ieg_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_kfev5ieg_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kfev5ieg_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_kfev5ieg_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_kfev5ieg_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kfev5ieg_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_kfev5ieg_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d9349d2 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_kfev5ieg_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_kfev5ieg_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kfev5ieg_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_kfev5ieg_wpftmp.assets.cache new file mode 100644 index 0000000..a8e171a Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_kfev5ieg_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kfev5ieg_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_kfev5ieg_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kgo0e0bu_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_kgo0e0bu_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_kgo0e0bu_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kgo0e0bu_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_kgo0e0bu_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_kgo0e0bu_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kgo0e0bu_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_kgo0e0bu_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..2f759cc --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_kgo0e0bu_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_kgo0e0bu_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kgo0e0bu_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_kgo0e0bu_wpftmp.assets.cache new file mode 100644 index 0000000..89aa087 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_kgo0e0bu_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kgo0e0bu_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_kgo0e0bu_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kiuhptvw_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_kiuhptvw_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_kiuhptvw_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kiuhptvw_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_kiuhptvw_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_kiuhptvw_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kiuhptvw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_kiuhptvw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..8e939bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_kiuhptvw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_kiuhptvw_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kiuhptvw_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_kiuhptvw_wpftmp.assets.cache new file mode 100644 index 0000000..4ddc99a Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_kiuhptvw_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kjdzbdud_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_kjdzbdud_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_kjdzbdud_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kjdzbdud_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_kjdzbdud_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_kjdzbdud_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kjdzbdud_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_kjdzbdud_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..4f4663d --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_kjdzbdud_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_kjdzbdud_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kjdzbdud_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_kjdzbdud_wpftmp.assets.cache new file mode 100644 index 0000000..3e04085 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_kjdzbdud_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kjdzbdud_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_kjdzbdud_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kkto1olm_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_kkto1olm_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_kkto1olm_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kkto1olm_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_kkto1olm_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_kkto1olm_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kkto1olm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_kkto1olm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..331a366 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_kkto1olm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_kkto1olm_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kkto1olm_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_kkto1olm_wpftmp.assets.cache new file mode 100644 index 0000000..126e572 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_kkto1olm_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kkto1olm_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_kkto1olm_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kl0pftgk_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_kl0pftgk_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_kl0pftgk_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kl0pftgk_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_kl0pftgk_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_kl0pftgk_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kl0pftgk_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_kl0pftgk_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..cd737f0 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_kl0pftgk_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_kl0pftgk_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kl0pftgk_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_kl0pftgk_wpftmp.assets.cache new file mode 100644 index 0000000..ecda097 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_kl0pftgk_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kl0pftgk_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_kl0pftgk_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_klmxlcoq_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_klmxlcoq_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_klmxlcoq_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_klmxlcoq_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_klmxlcoq_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_klmxlcoq_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_klmxlcoq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_klmxlcoq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..647e507 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_klmxlcoq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_klmxlcoq_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_klmxlcoq_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_klmxlcoq_wpftmp.assets.cache new file mode 100644 index 0000000..f9da080 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_klmxlcoq_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_klmxlcoq_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_klmxlcoq_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kmhz20tp_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_kmhz20tp_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_kmhz20tp_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kmhz20tp_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_kmhz20tp_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_kmhz20tp_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kmhz20tp_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_kmhz20tp_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..f6fac15 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_kmhz20tp_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_kmhz20tp_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kmhz20tp_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_kmhz20tp_wpftmp.assets.cache new file mode 100644 index 0000000..79b266d Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_kmhz20tp_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kmhz20tp_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_kmhz20tp_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kyfxa5dy_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_kyfxa5dy_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_kyfxa5dy_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kyfxa5dy_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_kyfxa5dy_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_kyfxa5dy_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kyfxa5dy_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_kyfxa5dy_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..f9df96b --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_kyfxa5dy_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_kyfxa5dy_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kyfxa5dy_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_kyfxa5dy_wpftmp.assets.cache new file mode 100644 index 0000000..08b841f Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_kyfxa5dy_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_kyfxa5dy_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_kyfxa5dy_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_l2vojblk_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_l2vojblk_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_l2vojblk_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_l2vojblk_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_l2vojblk_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_l2vojblk_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_l2vojblk_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_l2vojblk_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..16cbff2 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_l2vojblk_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_l2vojblk_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_l2vojblk_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_l2vojblk_wpftmp.assets.cache new file mode 100644 index 0000000..feb3f98 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_l2vojblk_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_l2vojblk_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_l2vojblk_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_l33szwqq_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_l33szwqq_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_l33szwqq_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_l33szwqq_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_l33szwqq_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_l33szwqq_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_l33szwqq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_l33szwqq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..238be4a --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_l33szwqq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_l33szwqq_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_l33szwqq_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_l33szwqq_wpftmp.assets.cache new file mode 100644 index 0000000..f242f79 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_l33szwqq_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_l33szwqq_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_l33szwqq_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_l4afhs5a_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_l4afhs5a_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_l4afhs5a_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_l4afhs5a_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_l4afhs5a_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_l4afhs5a_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_l4afhs5a_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_l4afhs5a_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..3ffec9d --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_l4afhs5a_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_l4afhs5a_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_l4afhs5a_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_l4afhs5a_wpftmp.assets.cache new file mode 100644 index 0000000..40e97c8 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_l4afhs5a_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_l4afhs5a_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_l4afhs5a_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_levjs54k_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_levjs54k_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_levjs54k_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_levjs54k_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_levjs54k_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_levjs54k_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_levjs54k_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_levjs54k_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..5e000f9 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_levjs54k_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_levjs54k_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_levjs54k_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_levjs54k_wpftmp.assets.cache new file mode 100644 index 0000000..124c2e2 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_levjs54k_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_levjs54k_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_levjs54k_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_lexdchn5_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_lexdchn5_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_lexdchn5_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_lexdchn5_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_lexdchn5_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_lexdchn5_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_lexdchn5_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_lexdchn5_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..48122e4 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_lexdchn5_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_lexdchn5_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_lexdchn5_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_lexdchn5_wpftmp.assets.cache new file mode 100644 index 0000000..2213cf9 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_lexdchn5_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_lexdchn5_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_lexdchn5_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_lj2glnl4_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_lj2glnl4_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_lj2glnl4_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_lj2glnl4_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_lj2glnl4_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_lj2glnl4_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_lj2glnl4_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_lj2glnl4_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..e1af31d --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_lj2glnl4_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_lj2glnl4_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_lj2glnl4_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_lj2glnl4_wpftmp.assets.cache new file mode 100644 index 0000000..bd36fce Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_lj2glnl4_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_lj2glnl4_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_lj2glnl4_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_lrsurg5l_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_lrsurg5l_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_lrsurg5l_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_lrsurg5l_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_lrsurg5l_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_lrsurg5l_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_lrsurg5l_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_lrsurg5l_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..23dd9b0 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_lrsurg5l_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_lrsurg5l_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_lrsurg5l_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_lrsurg5l_wpftmp.assets.cache new file mode 100644 index 0000000..008c424 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_lrsurg5l_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_lrsurg5l_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_lrsurg5l_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_lvt35w3i_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_lvt35w3i_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_lvt35w3i_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_lvt35w3i_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_lvt35w3i_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_lvt35w3i_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_lvt35w3i_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_lvt35w3i_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..e1d0e2c --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_lvt35w3i_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_lvt35w3i_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_lvt35w3i_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_lvt35w3i_wpftmp.assets.cache new file mode 100644 index 0000000..ccf27e4 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_lvt35w3i_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_lvt35w3i_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_lvt35w3i_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_lwlakpeg_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_lwlakpeg_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_lwlakpeg_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_lwlakpeg_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_lwlakpeg_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_lwlakpeg_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_lwlakpeg_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_lwlakpeg_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..eaca048 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_lwlakpeg_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_lwlakpeg_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_lwlakpeg_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_lwlakpeg_wpftmp.assets.cache new file mode 100644 index 0000000..d442f7f Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_lwlakpeg_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_lwlakpeg_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_lwlakpeg_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_lxu04cea_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_lxu04cea_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_lxu04cea_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_lxu04cea_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_lxu04cea_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_lxu04cea_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_lxu04cea_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_lxu04cea_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..3739c72 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_lxu04cea_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_lxu04cea_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_lxu04cea_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_lxu04cea_wpftmp.assets.cache new file mode 100644 index 0000000..518607b Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_lxu04cea_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_lxu04cea_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_lxu04cea_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_m2kdn3md_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_m2kdn3md_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_m2kdn3md_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_m2kdn3md_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_m2kdn3md_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_m2kdn3md_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_m2kdn3md_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_m2kdn3md_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..cd92af2 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_m2kdn3md_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_m2kdn3md_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_m2kdn3md_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_m2kdn3md_wpftmp.assets.cache new file mode 100644 index 0000000..19e39dd Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_m2kdn3md_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_m2kdn3md_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_m2kdn3md_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_m3443e3c_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_m3443e3c_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_m3443e3c_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_m3443e3c_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_m3443e3c_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_m3443e3c_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_m3443e3c_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_m3443e3c_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..6bfad1a --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_m3443e3c_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_m3443e3c_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_m3443e3c_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_m3443e3c_wpftmp.assets.cache new file mode 100644 index 0000000..7e75e3b Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_m3443e3c_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_m3443e3c_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_m3443e3c_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_m4a4nrib_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_m4a4nrib_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_m4a4nrib_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_m4a4nrib_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_m4a4nrib_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_m4a4nrib_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_m4a4nrib_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_m4a4nrib_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..8d654bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_m4a4nrib_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_m4a4nrib_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_m4a4nrib_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_m4a4nrib_wpftmp.assets.cache new file mode 100644 index 0000000..4cd83b9 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_m4a4nrib_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_m4a4nrib_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_m4a4nrib_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_m5vsoqxd_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_m5vsoqxd_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_m5vsoqxd_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_m5vsoqxd_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_m5vsoqxd_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_m5vsoqxd_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_m5vsoqxd_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_m5vsoqxd_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..5450916 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_m5vsoqxd_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_m5vsoqxd_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_m5vsoqxd_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_m5vsoqxd_wpftmp.assets.cache new file mode 100644 index 0000000..058f376 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_m5vsoqxd_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_m5vsoqxd_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_m5vsoqxd_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_mbs54rrm_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_mbs54rrm_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_mbs54rrm_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_mbs54rrm_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_mbs54rrm_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_mbs54rrm_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_mbs54rrm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_mbs54rrm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..467662b --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_mbs54rrm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_mbs54rrm_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_mbs54rrm_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_mbs54rrm_wpftmp.assets.cache new file mode 100644 index 0000000..2f357c1 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_mbs54rrm_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_mbs54rrm_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_mbs54rrm_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_mcbtrnca_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_mcbtrnca_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_mcbtrnca_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_mcbtrnca_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_mcbtrnca_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_mcbtrnca_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_mcbtrnca_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_mcbtrnca_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..7b5e59e --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_mcbtrnca_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_mcbtrnca_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_mcbtrnca_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_mcbtrnca_wpftmp.assets.cache new file mode 100644 index 0000000..8ed7fbc Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_mcbtrnca_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_mcbtrnca_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_mcbtrnca_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_mf1f1onw_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_mf1f1onw_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_mf1f1onw_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_mf1f1onw_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_mf1f1onw_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_mf1f1onw_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_mf1f1onw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_mf1f1onw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..6841127 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_mf1f1onw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_mf1f1onw_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_mf1f1onw_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_mf1f1onw_wpftmp.assets.cache new file mode 100644 index 0000000..d4ffc23 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_mf1f1onw_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_mf1f1onw_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_mf1f1onw_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_mi1cx1za_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_mi1cx1za_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_mi1cx1za_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_mi1cx1za_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_mi1cx1za_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_mi1cx1za_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_mi1cx1za_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_mi1cx1za_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..a4b8ac5 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_mi1cx1za_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_mi1cx1za_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_mi1cx1za_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_mi1cx1za_wpftmp.assets.cache new file mode 100644 index 0000000..88394bd Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_mi1cx1za_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_mi1cx1za_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_mi1cx1za_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_mi2tlcis_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_mi2tlcis_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_mi2tlcis_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_mi2tlcis_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_mi2tlcis_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_mi2tlcis_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_mi2tlcis_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_mi2tlcis_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..ac13805 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_mi2tlcis_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_mi2tlcis_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_mi2tlcis_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_mi2tlcis_wpftmp.assets.cache new file mode 100644 index 0000000..418bd8b Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_mi2tlcis_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_mi2tlcis_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_mi2tlcis_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_mizfxjrn_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_mizfxjrn_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_mizfxjrn_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_mizfxjrn_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_mizfxjrn_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_mizfxjrn_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_mizfxjrn_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_mizfxjrn_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..e0b25a5 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_mizfxjrn_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_mizfxjrn_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_mizfxjrn_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_mizfxjrn_wpftmp.assets.cache new file mode 100644 index 0000000..2b5ea22 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_mizfxjrn_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_mizfxjrn_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_mizfxjrn_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_mmixsleo_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_mmixsleo_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_mmixsleo_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_mmixsleo_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_mmixsleo_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_mmixsleo_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_mmixsleo_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_mmixsleo_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..43a12f8 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_mmixsleo_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_mmixsleo_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_mmixsleo_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_mmixsleo_wpftmp.assets.cache new file mode 100644 index 0000000..1bd3b2a Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_mmixsleo_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_mmixsleo_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_mmixsleo_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_mslvsxvw_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_mslvsxvw_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_mslvsxvw_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_mslvsxvw_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_mslvsxvw_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_mslvsxvw_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_mslvsxvw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_mslvsxvw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..6ff57ff --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_mslvsxvw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_mslvsxvw_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_mslvsxvw_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_mslvsxvw_wpftmp.assets.cache new file mode 100644 index 0000000..c3aca9c Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_mslvsxvw_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_mslvsxvw_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_mslvsxvw_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_msqpxzfw_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_msqpxzfw_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_msqpxzfw_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_msqpxzfw_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_msqpxzfw_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_msqpxzfw_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_msqpxzfw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_msqpxzfw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..e04352c --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_msqpxzfw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_msqpxzfw_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_msqpxzfw_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_msqpxzfw_wpftmp.assets.cache new file mode 100644 index 0000000..f63461f Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_msqpxzfw_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_msqpxzfw_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_msqpxzfw_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_myi5vjxv_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_myi5vjxv_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_myi5vjxv_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_myi5vjxv_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_myi5vjxv_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_myi5vjxv_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_myi5vjxv_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_myi5vjxv_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..76e4b96 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_myi5vjxv_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_myi5vjxv_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_myi5vjxv_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_myi5vjxv_wpftmp.assets.cache new file mode 100644 index 0000000..853d4c9 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_myi5vjxv_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_myi5vjxv_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_myi5vjxv_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_n03rdbxw_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_n03rdbxw_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_n03rdbxw_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_n03rdbxw_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_n03rdbxw_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_n03rdbxw_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_n03rdbxw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_n03rdbxw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..a88894b --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_n03rdbxw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_n03rdbxw_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_n03rdbxw_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_n03rdbxw_wpftmp.assets.cache new file mode 100644 index 0000000..802725f Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_n03rdbxw_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_n5nrbvyv_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_n5nrbvyv_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_n5nrbvyv_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_n5nrbvyv_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_n5nrbvyv_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_n5nrbvyv_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_n5nrbvyv_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_n5nrbvyv_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d816456 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_n5nrbvyv_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_n5nrbvyv_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_n5nrbvyv_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_n5nrbvyv_wpftmp.assets.cache new file mode 100644 index 0000000..23453d1 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_n5nrbvyv_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_n5nrbvyv_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_n5nrbvyv_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ncacadlf_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_ncacadlf_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ncacadlf_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ncacadlf_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_ncacadlf_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ncacadlf_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ncacadlf_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_ncacadlf_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..e618663 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ncacadlf_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_ncacadlf_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ncacadlf_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_ncacadlf_wpftmp.assets.cache new file mode 100644 index 0000000..7d8f2b2 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_ncacadlf_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ncacadlf_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_ncacadlf_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_nin0l0rv_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_nin0l0rv_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_nin0l0rv_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_nin0l0rv_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_nin0l0rv_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_nin0l0rv_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_nin0l0rv_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_nin0l0rv_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..3a73d53 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_nin0l0rv_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_nin0l0rv_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_nin0l0rv_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_nin0l0rv_wpftmp.assets.cache new file mode 100644 index 0000000..bd95b79 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_nin0l0rv_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_nin0l0rv_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_nin0l0rv_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_nrmzo1fn_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_nrmzo1fn_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_nrmzo1fn_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_nrmzo1fn_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_nrmzo1fn_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_nrmzo1fn_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_nrmzo1fn_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_nrmzo1fn_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..cdbbd6a --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_nrmzo1fn_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_nrmzo1fn_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_nrmzo1fn_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_nrmzo1fn_wpftmp.assets.cache new file mode 100644 index 0000000..4c292e4 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_nrmzo1fn_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_nrmzo1fn_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_nrmzo1fn_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_nsaqbpsr_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_nsaqbpsr_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_nsaqbpsr_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_nsaqbpsr_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_nsaqbpsr_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_nsaqbpsr_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_nsaqbpsr_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_nsaqbpsr_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..47763a6 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_nsaqbpsr_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_nsaqbpsr_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_nsaqbpsr_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_nsaqbpsr_wpftmp.assets.cache new file mode 100644 index 0000000..635a793 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_nsaqbpsr_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_nsaqbpsr_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_nsaqbpsr_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_nuljsauy_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_nuljsauy_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_nuljsauy_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_nuljsauy_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_nuljsauy_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_nuljsauy_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_nuljsauy_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_nuljsauy_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..38c7681 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_nuljsauy_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_nuljsauy_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_nuljsauy_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_nuljsauy_wpftmp.assets.cache new file mode 100644 index 0000000..c0642cf Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_nuljsauy_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_nuljsauy_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_nuljsauy_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_nv5irqjn_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_nv5irqjn_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_nv5irqjn_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_nv5irqjn_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_nv5irqjn_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_nv5irqjn_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_nv5irqjn_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_nv5irqjn_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..4753773 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_nv5irqjn_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_nv5irqjn_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_nv5irqjn_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_nv5irqjn_wpftmp.assets.cache new file mode 100644 index 0000000..cf35127 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_nv5irqjn_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_nv5irqjn_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_nv5irqjn_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_o0dljsl0_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_o0dljsl0_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_o0dljsl0_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_o0dljsl0_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_o0dljsl0_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_o0dljsl0_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_o0dljsl0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_o0dljsl0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..0e5eec6 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_o0dljsl0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_o0dljsl0_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_o0dljsl0_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_o0dljsl0_wpftmp.assets.cache new file mode 100644 index 0000000..259d7fa Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_o0dljsl0_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_o0dljsl0_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_o0dljsl0_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_o0h13boa_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_o0h13boa_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_o0h13boa_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_o0h13boa_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_o0h13boa_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_o0h13boa_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_o0h13boa_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_o0h13boa_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..1818d54 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_o0h13boa_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_o0h13boa_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_o0h13boa_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_o0h13boa_wpftmp.assets.cache new file mode 100644 index 0000000..9a1fc3b Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_o0h13boa_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_o0h13boa_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_o0h13boa_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ocafbhis_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_ocafbhis_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ocafbhis_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ocafbhis_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_ocafbhis_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ocafbhis_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ocafbhis_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_ocafbhis_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..db06d2d --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ocafbhis_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_ocafbhis_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ocafbhis_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_ocafbhis_wpftmp.assets.cache new file mode 100644 index 0000000..318bebe Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_ocafbhis_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ocafbhis_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_ocafbhis_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ocn1qng1_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_ocn1qng1_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ocn1qng1_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ocn1qng1_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_ocn1qng1_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ocn1qng1_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ocn1qng1_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_ocn1qng1_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..9bba355 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ocn1qng1_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_ocn1qng1_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ocn1qng1_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_ocn1qng1_wpftmp.assets.cache new file mode 100644 index 0000000..fbfc490 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_ocn1qng1_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ocn1qng1_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_ocn1qng1_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ocnqel4w_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_ocnqel4w_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ocnqel4w_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ocnqel4w_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_ocnqel4w_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ocnqel4w_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ocnqel4w_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_ocnqel4w_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..de52257 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ocnqel4w_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_ocnqel4w_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ocnqel4w_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_ocnqel4w_wpftmp.assets.cache new file mode 100644 index 0000000..14153f6 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_ocnqel4w_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ocnqel4w_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_ocnqel4w_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_odqaao03_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_odqaao03_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_odqaao03_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_odqaao03_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_odqaao03_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_odqaao03_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_odqaao03_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_odqaao03_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..16f02da --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_odqaao03_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_odqaao03_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_odqaao03_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_odqaao03_wpftmp.assets.cache new file mode 100644 index 0000000..0fa00eb Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_odqaao03_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_odqaao03_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_odqaao03_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ojepwyjc_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_ojepwyjc_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ojepwyjc_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ojepwyjc_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_ojepwyjc_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ojepwyjc_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ojepwyjc_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_ojepwyjc_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..25e1d24 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ojepwyjc_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_ojepwyjc_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ojepwyjc_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_ojepwyjc_wpftmp.assets.cache new file mode 100644 index 0000000..eb15fa6 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_ojepwyjc_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ojepwyjc_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_ojepwyjc_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_omv1evvf_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_omv1evvf_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_omv1evvf_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_omv1evvf_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_omv1evvf_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_omv1evvf_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_omv1evvf_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_omv1evvf_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..6365cec --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_omv1evvf_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_omv1evvf_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_omv1evvf_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_omv1evvf_wpftmp.assets.cache new file mode 100644 index 0000000..5ad4d8c Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_omv1evvf_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_omv1evvf_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_omv1evvf_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_oopaeqat_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_oopaeqat_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_oopaeqat_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_oopaeqat_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_oopaeqat_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_oopaeqat_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_oopaeqat_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_oopaeqat_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..f82cd36 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_oopaeqat_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_oopaeqat_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_oopaeqat_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_oopaeqat_wpftmp.assets.cache new file mode 100644 index 0000000..7ac28c2 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_oopaeqat_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_oopaeqat_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_oopaeqat_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_or0neyux_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_or0neyux_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_or0neyux_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_or0neyux_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_or0neyux_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_or0neyux_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_or0neyux_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_or0neyux_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..2ae18ed --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_or0neyux_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_or0neyux_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_or0neyux_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_or0neyux_wpftmp.assets.cache new file mode 100644 index 0000000..de795bc Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_or0neyux_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_or0neyux_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_or0neyux_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_p3wgjk1z_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_p3wgjk1z_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_p3wgjk1z_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_p3wgjk1z_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_p3wgjk1z_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_p3wgjk1z_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_p3wgjk1z_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_p3wgjk1z_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..018547a --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_p3wgjk1z_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_p3wgjk1z_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_p3wgjk1z_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_p3wgjk1z_wpftmp.assets.cache new file mode 100644 index 0000000..557b3a7 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_p3wgjk1z_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_p3wgjk1z_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_p3wgjk1z_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_pcaprg1i_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_pcaprg1i_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_pcaprg1i_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_pcaprg1i_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_pcaprg1i_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_pcaprg1i_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_pcaprg1i_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_pcaprg1i_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..926d283 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_pcaprg1i_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_pcaprg1i_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_pcaprg1i_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_pcaprg1i_wpftmp.assets.cache new file mode 100644 index 0000000..00f99cb Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_pcaprg1i_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_pcaprg1i_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_pcaprg1i_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_pe4t53db_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_pe4t53db_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_pe4t53db_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_pe4t53db_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_pe4t53db_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_pe4t53db_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_pe4t53db_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_pe4t53db_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..7f1372b --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_pe4t53db_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_pe4t53db_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_pe4t53db_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_pe4t53db_wpftmp.assets.cache new file mode 100644 index 0000000..a8ff56d Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_pe4t53db_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_pe4t53db_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_pe4t53db_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_pezrc2qs_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_pezrc2qs_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_pezrc2qs_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_pezrc2qs_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_pezrc2qs_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_pezrc2qs_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_pezrc2qs_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_pezrc2qs_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..7f2ffc6 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_pezrc2qs_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_pezrc2qs_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_pezrc2qs_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_pezrc2qs_wpftmp.assets.cache new file mode 100644 index 0000000..984d157 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_pezrc2qs_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_pezrc2qs_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_pezrc2qs_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_pfibb1sg_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_pfibb1sg_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_pfibb1sg_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_pfibb1sg_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_pfibb1sg_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_pfibb1sg_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_pfibb1sg_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_pfibb1sg_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..3c9a799 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_pfibb1sg_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_pfibb1sg_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_pfibb1sg_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_pfibb1sg_wpftmp.assets.cache new file mode 100644 index 0000000..630e636 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_pfibb1sg_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_pfibb1sg_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_pfibb1sg_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_pmrpuemr_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_pmrpuemr_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_pmrpuemr_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_pmrpuemr_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_pmrpuemr_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_pmrpuemr_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_pmrpuemr_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_pmrpuemr_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..4686abc --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_pmrpuemr_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_pmrpuemr_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_pmrpuemr_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_pmrpuemr_wpftmp.assets.cache new file mode 100644 index 0000000..6161fa1 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_pmrpuemr_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_pmrpuemr_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_pmrpuemr_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_puq2hqi5_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_puq2hqi5_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_puq2hqi5_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_puq2hqi5_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_puq2hqi5_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_puq2hqi5_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_puq2hqi5_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_puq2hqi5_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..f71a5b2 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_puq2hqi5_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_puq2hqi5_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_puq2hqi5_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_puq2hqi5_wpftmp.assets.cache new file mode 100644 index 0000000..adabcc9 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_puq2hqi5_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_puq2hqi5_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_puq2hqi5_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_pw2h24ol_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_pw2h24ol_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_pw2h24ol_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_pw2h24ol_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_pw2h24ol_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_pw2h24ol_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_pw2h24ol_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_pw2h24ol_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..06a3b63 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_pw2h24ol_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_pw2h24ol_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_pw2h24ol_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_pw2h24ol_wpftmp.assets.cache new file mode 100644 index 0000000..cee4a79 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_pw2h24ol_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_pw2h24ol_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_pw2h24ol_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_pyycutm5_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_pyycutm5_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_pyycutm5_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_pyycutm5_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_pyycutm5_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_pyycutm5_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_pyycutm5_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_pyycutm5_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..9717418 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_pyycutm5_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_pyycutm5_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_pyycutm5_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_pyycutm5_wpftmp.assets.cache new file mode 100644 index 0000000..f3fb934 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_pyycutm5_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_pyycutm5_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_pyycutm5_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_qa3osucf_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_qa3osucf_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_qa3osucf_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_qa3osucf_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_qa3osucf_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_qa3osucf_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_qa3osucf_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_qa3osucf_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..ea9a291 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_qa3osucf_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_qa3osucf_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_qa3osucf_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_qa3osucf_wpftmp.assets.cache new file mode 100644 index 0000000..9ddabcb Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_qa3osucf_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_qa3osucf_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_qa3osucf_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_qclxoq3m_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_qclxoq3m_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_qclxoq3m_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_qclxoq3m_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_qclxoq3m_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_qclxoq3m_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_qclxoq3m_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_qclxoq3m_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..00cf7c2 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_qclxoq3m_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_qclxoq3m_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_qclxoq3m_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_qclxoq3m_wpftmp.assets.cache new file mode 100644 index 0000000..9157b97 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_qclxoq3m_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_qclxoq3m_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_qclxoq3m_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_qnb32kbz_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_qnb32kbz_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_qnb32kbz_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_qnb32kbz_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_qnb32kbz_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_qnb32kbz_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_qnb32kbz_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_qnb32kbz_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..af369be --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_qnb32kbz_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_qnb32kbz_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_qnb32kbz_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_qnb32kbz_wpftmp.assets.cache new file mode 100644 index 0000000..0455c4a Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_qnb32kbz_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_qnb32kbz_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_qnb32kbz_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_qq0lboyp_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_qq0lboyp_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_qq0lboyp_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_qq0lboyp_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_qq0lboyp_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_qq0lboyp_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_qq0lboyp_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_qq0lboyp_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..9ce109f --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_qq0lboyp_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_qq0lboyp_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_qq0lboyp_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_qq0lboyp_wpftmp.assets.cache new file mode 100644 index 0000000..f990a33 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_qq0lboyp_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_qq0lboyp_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_qq0lboyp_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_qtrodhf1_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_qtrodhf1_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_qtrodhf1_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_qtrodhf1_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_qtrodhf1_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_qtrodhf1_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_qtrodhf1_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_qtrodhf1_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..f275012 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_qtrodhf1_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_qtrodhf1_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_qtrodhf1_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_qtrodhf1_wpftmp.assets.cache new file mode 100644 index 0000000..bf00752 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_qtrodhf1_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_qtrodhf1_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_qtrodhf1_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_qvpz3yv4_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_qvpz3yv4_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_qvpz3yv4_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_qvpz3yv4_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_qvpz3yv4_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_qvpz3yv4_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_qvpz3yv4_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_qvpz3yv4_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..3f2d810 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_qvpz3yv4_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_qvpz3yv4_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_qvpz3yv4_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_qvpz3yv4_wpftmp.assets.cache new file mode 100644 index 0000000..967086c Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_qvpz3yv4_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_qvpz3yv4_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_qvpz3yv4_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_r3vxhito_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_r3vxhito_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_r3vxhito_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_r3vxhito_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_r3vxhito_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_r3vxhito_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_r3vxhito_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_r3vxhito_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..0f20e40 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_r3vxhito_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_r3vxhito_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_r3vxhito_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_r3vxhito_wpftmp.assets.cache new file mode 100644 index 0000000..f7a9a00 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_r3vxhito_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_r3vxhito_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_r3vxhito_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_rgeoxmmj_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_rgeoxmmj_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_rgeoxmmj_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_rgeoxmmj_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_rgeoxmmj_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_rgeoxmmj_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_rgeoxmmj_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_rgeoxmmj_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..bd61d53 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_rgeoxmmj_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_rgeoxmmj_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_rgeoxmmj_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_rgeoxmmj_wpftmp.assets.cache new file mode 100644 index 0000000..c9dc773 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_rgeoxmmj_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_rgeoxmmj_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_rgeoxmmj_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_rhtsqijc_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_rhtsqijc_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_rhtsqijc_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_rhtsqijc_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_rhtsqijc_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_rhtsqijc_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_rhtsqijc_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_rhtsqijc_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..aaec297 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_rhtsqijc_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_rhtsqijc_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_rhtsqijc_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_rhtsqijc_wpftmp.assets.cache new file mode 100644 index 0000000..04c81d4 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_rhtsqijc_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_rhtsqijc_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_rhtsqijc_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ri2icw40_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_ri2icw40_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ri2icw40_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ri2icw40_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_ri2icw40_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ri2icw40_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ri2icw40_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_ri2icw40_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..81579d8 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ri2icw40_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_ri2icw40_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ri2icw40_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_ri2icw40_wpftmp.assets.cache new file mode 100644 index 0000000..7918fb3 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_ri2icw40_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ri2icw40_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_ri2icw40_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_rlwkobxq_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_rlwkobxq_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_rlwkobxq_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_rlwkobxq_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_rlwkobxq_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_rlwkobxq_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_rlwkobxq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_rlwkobxq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..e2ae609 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_rlwkobxq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_rlwkobxq_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_rlwkobxq_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_rlwkobxq_wpftmp.assets.cache new file mode 100644 index 0000000..f4b88f8 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_rlwkobxq_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_rlwkobxq_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_rlwkobxq_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_rmdw2a3o_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_rmdw2a3o_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_rmdw2a3o_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_rmdw2a3o_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_rmdw2a3o_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_rmdw2a3o_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_rmdw2a3o_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_rmdw2a3o_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..296bf95 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_rmdw2a3o_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_rmdw2a3o_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_rmdw2a3o_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_rmdw2a3o_wpftmp.assets.cache new file mode 100644 index 0000000..bd5f05a Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_rmdw2a3o_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_rmdw2a3o_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_rmdw2a3o_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ryarwz1l_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_ryarwz1l_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ryarwz1l_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ryarwz1l_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_ryarwz1l_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ryarwz1l_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ryarwz1l_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_ryarwz1l_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..2c3e78e --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ryarwz1l_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_ryarwz1l_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ryarwz1l_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_ryarwz1l_wpftmp.assets.cache new file mode 100644 index 0000000..8331223 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_ryarwz1l_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ryarwz1l_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_ryarwz1l_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_s5bt4fhh_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_s5bt4fhh_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_s5bt4fhh_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_s5bt4fhh_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_s5bt4fhh_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_s5bt4fhh_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_s5bt4fhh_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_s5bt4fhh_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..db9b204 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_s5bt4fhh_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_s5bt4fhh_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_s5bt4fhh_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_s5bt4fhh_wpftmp.assets.cache new file mode 100644 index 0000000..50b70c0 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_s5bt4fhh_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_s5bt4fhh_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_s5bt4fhh_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_sbedivm0_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_sbedivm0_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_sbedivm0_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_sbedivm0_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_sbedivm0_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_sbedivm0_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_sbedivm0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_sbedivm0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d7d394c --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_sbedivm0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_sbedivm0_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_sbedivm0_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_sbedivm0_wpftmp.assets.cache new file mode 100644 index 0000000..41e4ae8 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_sbedivm0_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_sbedivm0_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_sbedivm0_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_sfgizin0_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_sfgizin0_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_sfgizin0_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_sfgizin0_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_sfgizin0_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_sfgizin0_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_sfgizin0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_sfgizin0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..01c015b --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_sfgizin0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_sfgizin0_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_sfgizin0_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_sfgizin0_wpftmp.assets.cache new file mode 100644 index 0000000..d993e01 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_sfgizin0_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_sfgizin0_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_sfgizin0_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_shrjqmmm_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_shrjqmmm_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_shrjqmmm_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_shrjqmmm_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_shrjqmmm_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_shrjqmmm_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_shrjqmmm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_shrjqmmm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..7dc4e01 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_shrjqmmm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_shrjqmmm_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_shrjqmmm_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_shrjqmmm_wpftmp.assets.cache new file mode 100644 index 0000000..fc4aea9 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_shrjqmmm_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_shrjqmmm_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_shrjqmmm_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_slhhl33u_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_slhhl33u_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_slhhl33u_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_slhhl33u_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_slhhl33u_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_slhhl33u_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_slhhl33u_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_slhhl33u_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..3a4ba48 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_slhhl33u_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_slhhl33u_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_slhhl33u_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_slhhl33u_wpftmp.assets.cache new file mode 100644 index 0000000..4188e89 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_slhhl33u_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_slhhl33u_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_slhhl33u_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_so5iac5q_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_so5iac5q_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_so5iac5q_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_so5iac5q_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_so5iac5q_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_so5iac5q_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_so5iac5q_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_so5iac5q_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..6e63e26 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_so5iac5q_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_so5iac5q_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_so5iac5q_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_so5iac5q_wpftmp.assets.cache new file mode 100644 index 0000000..4e14083 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_so5iac5q_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_so5iac5q_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_so5iac5q_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_sqdmxgmk_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_sqdmxgmk_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_sqdmxgmk_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_sqdmxgmk_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_sqdmxgmk_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_sqdmxgmk_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_sqdmxgmk_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_sqdmxgmk_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..7ba8eae --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_sqdmxgmk_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_sqdmxgmk_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_sqdmxgmk_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_sqdmxgmk_wpftmp.assets.cache new file mode 100644 index 0000000..fc9d4b9 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_sqdmxgmk_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_sqdmxgmk_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_sqdmxgmk_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_swcqogs1_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_swcqogs1_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_swcqogs1_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_swcqogs1_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_swcqogs1_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_swcqogs1_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_swcqogs1_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_swcqogs1_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..5d24b45 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_swcqogs1_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_swcqogs1_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_swcqogs1_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_swcqogs1_wpftmp.assets.cache new file mode 100644 index 0000000..85c53dc Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_swcqogs1_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_swcqogs1_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_swcqogs1_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_syacm3yh_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_syacm3yh_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_syacm3yh_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_syacm3yh_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_syacm3yh_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_syacm3yh_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_syacm3yh_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_syacm3yh_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..c5e6601 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_syacm3yh_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_syacm3yh_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_syacm3yh_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_syacm3yh_wpftmp.assets.cache new file mode 100644 index 0000000..726bde7 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_syacm3yh_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_syacm3yh_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_syacm3yh_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_tduuwrjf_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_tduuwrjf_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_tduuwrjf_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_tduuwrjf_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_tduuwrjf_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_tduuwrjf_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_tduuwrjf_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_tduuwrjf_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..51871f1 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_tduuwrjf_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_tduuwrjf_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_tduuwrjf_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_tduuwrjf_wpftmp.assets.cache new file mode 100644 index 0000000..45fb944 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_tduuwrjf_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_tduuwrjf_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_tduuwrjf_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_tgjd0xgm_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_tgjd0xgm_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_tgjd0xgm_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_tgjd0xgm_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_tgjd0xgm_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_tgjd0xgm_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_tgjd0xgm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_tgjd0xgm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..1f22172 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_tgjd0xgm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_tgjd0xgm_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_tgjd0xgm_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_tgjd0xgm_wpftmp.assets.cache new file mode 100644 index 0000000..b90baa5 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_tgjd0xgm_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_tgjd0xgm_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_tgjd0xgm_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_thobs40s_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_thobs40s_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_thobs40s_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_thobs40s_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_thobs40s_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_thobs40s_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_thobs40s_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_thobs40s_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..fae7abb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_thobs40s_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_thobs40s_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_thobs40s_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_thobs40s_wpftmp.assets.cache new file mode 100644 index 0000000..65fb327 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_thobs40s_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_thobs40s_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_thobs40s_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_tjnibzyd_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_tjnibzyd_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_tjnibzyd_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_tjnibzyd_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_tjnibzyd_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_tjnibzyd_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_tjnibzyd_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_tjnibzyd_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..4636210 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_tjnibzyd_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_tjnibzyd_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_tjnibzyd_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_tjnibzyd_wpftmp.assets.cache new file mode 100644 index 0000000..9a67ee7 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_tjnibzyd_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_tjnibzyd_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_tjnibzyd_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_tkoyjccq_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_tkoyjccq_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_tkoyjccq_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_tkoyjccq_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_tkoyjccq_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_tkoyjccq_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_tkoyjccq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_tkoyjccq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..5f42bc7 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_tkoyjccq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_tkoyjccq_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_tkoyjccq_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_tkoyjccq_wpftmp.assets.cache new file mode 100644 index 0000000..48b8900 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_tkoyjccq_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_tkoyjccq_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_tkoyjccq_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_tqntinvq_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_tqntinvq_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_tqntinvq_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_tqntinvq_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_tqntinvq_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_tqntinvq_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_tqntinvq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_tqntinvq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..de67014 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_tqntinvq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_tqntinvq_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_tqntinvq_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_tqntinvq_wpftmp.assets.cache new file mode 100644 index 0000000..1362886 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_tqntinvq_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_tqntinvq_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_tqntinvq_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_tvzuwbu0_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_tvzuwbu0_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_tvzuwbu0_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_tvzuwbu0_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_tvzuwbu0_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_tvzuwbu0_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_tvzuwbu0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_tvzuwbu0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..9e9a72e --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_tvzuwbu0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_tvzuwbu0_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_tvzuwbu0_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_tvzuwbu0_wpftmp.assets.cache new file mode 100644 index 0000000..4a97470 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_tvzuwbu0_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_tvzuwbu0_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_tvzuwbu0_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_typzkmcj_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_typzkmcj_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_typzkmcj_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_typzkmcj_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_typzkmcj_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_typzkmcj_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_typzkmcj_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_typzkmcj_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..a02e3d3 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_typzkmcj_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_typzkmcj_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_typzkmcj_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_typzkmcj_wpftmp.assets.cache new file mode 100644 index 0000000..4bbd60f Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_typzkmcj_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_typzkmcj_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_typzkmcj_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_tzygsebj_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_tzygsebj_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_tzygsebj_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_tzygsebj_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_tzygsebj_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_tzygsebj_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_tzygsebj_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_tzygsebj_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d8914a9 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_tzygsebj_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_tzygsebj_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_tzygsebj_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_tzygsebj_wpftmp.assets.cache new file mode 100644 index 0000000..6148c2e Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_tzygsebj_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_tzygsebj_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_tzygsebj_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_u2qetsqt_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_u2qetsqt_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_u2qetsqt_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_u2qetsqt_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_u2qetsqt_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_u2qetsqt_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_u2qetsqt_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_u2qetsqt_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..ed2fde5 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_u2qetsqt_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_u2qetsqt_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_u2qetsqt_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_u2qetsqt_wpftmp.assets.cache new file mode 100644 index 0000000..a708380 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_u2qetsqt_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_u2qetsqt_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_u2qetsqt_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_uc1b0lx5_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_uc1b0lx5_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_uc1b0lx5_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_uc1b0lx5_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_uc1b0lx5_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_uc1b0lx5_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_uc1b0lx5_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_uc1b0lx5_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..4afedf5 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_uc1b0lx5_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_uc1b0lx5_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_uc1b0lx5_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_uc1b0lx5_wpftmp.assets.cache new file mode 100644 index 0000000..c584997 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_uc1b0lx5_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_uc1b0lx5_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_uc1b0lx5_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ujcskklj_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_ujcskklj_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ujcskklj_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ujcskklj_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_ujcskklj_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ujcskklj_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ujcskklj_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_ujcskklj_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..e1308a5 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ujcskklj_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_ujcskklj_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ujcskklj_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_ujcskklj_wpftmp.assets.cache new file mode 100644 index 0000000..142bdd7 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_ujcskklj_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ujcskklj_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_ujcskklj_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ur15kgus_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_ur15kgus_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ur15kgus_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ur15kgus_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_ur15kgus_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ur15kgus_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ur15kgus_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_ur15kgus_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..15c7130 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ur15kgus_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_ur15kgus_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ur15kgus_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_ur15kgus_wpftmp.assets.cache new file mode 100644 index 0000000..433f873 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_ur15kgus_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ur15kgus_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_ur15kgus_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_v2gtn3re_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_v2gtn3re_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_v2gtn3re_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_v2gtn3re_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_v2gtn3re_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_v2gtn3re_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_v2gtn3re_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_v2gtn3re_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..6499dc3 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_v2gtn3re_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_v2gtn3re_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_v2gtn3re_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_v2gtn3re_wpftmp.assets.cache new file mode 100644 index 0000000..f057ea1 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_v2gtn3re_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_v2gtn3re_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_v2gtn3re_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_vbgivtxq_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_vbgivtxq_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_vbgivtxq_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_vbgivtxq_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_vbgivtxq_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_vbgivtxq_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_vbgivtxq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_vbgivtxq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..fd4f68f --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_vbgivtxq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_vbgivtxq_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_vbgivtxq_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_vbgivtxq_wpftmp.assets.cache new file mode 100644 index 0000000..05e9e03 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_vbgivtxq_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_vbgivtxq_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_vbgivtxq_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_vj0easqg_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_vj0easqg_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_vj0easqg_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_vj0easqg_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_vj0easqg_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_vj0easqg_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_vj0easqg_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_vj0easqg_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..10beb42 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_vj0easqg_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_vj0easqg_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_vj0easqg_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_vj0easqg_wpftmp.assets.cache new file mode 100644 index 0000000..7fb72b8 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_vj0easqg_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_vj0easqg_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_vj0easqg_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_vmnlqqsn_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_vmnlqqsn_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_vmnlqqsn_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_vmnlqqsn_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_vmnlqqsn_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_vmnlqqsn_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_vmnlqqsn_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_vmnlqqsn_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..5f62d4c --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_vmnlqqsn_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_vmnlqqsn_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_vmnlqqsn_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_vmnlqqsn_wpftmp.assets.cache new file mode 100644 index 0000000..f8723fe Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_vmnlqqsn_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_vmnlqqsn_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_vmnlqqsn_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_volgsgu3_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_volgsgu3_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_volgsgu3_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_volgsgu3_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_volgsgu3_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_volgsgu3_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_volgsgu3_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_volgsgu3_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..04c1d23 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_volgsgu3_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_volgsgu3_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_volgsgu3_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_volgsgu3_wpftmp.assets.cache new file mode 100644 index 0000000..e4f2342 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_volgsgu3_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_volgsgu3_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_volgsgu3_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_w0smjynz_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_w0smjynz_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_w0smjynz_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_w0smjynz_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_w0smjynz_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_w0smjynz_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_w0smjynz_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_w0smjynz_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..3a28dbd --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_w0smjynz_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_w0smjynz_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_w0smjynz_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_w0smjynz_wpftmp.assets.cache new file mode 100644 index 0000000..8921790 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_w0smjynz_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_w0smjynz_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_w0smjynz_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_w2ks1rr4_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_w2ks1rr4_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_w2ks1rr4_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_w2ks1rr4_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_w2ks1rr4_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_w2ks1rr4_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_w2ks1rr4_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_w2ks1rr4_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..23cdecb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_w2ks1rr4_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_w2ks1rr4_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_w2ks1rr4_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_w2ks1rr4_wpftmp.assets.cache new file mode 100644 index 0000000..30a3cee Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_w2ks1rr4_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_w2ks1rr4_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_w2ks1rr4_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_wleew3fi_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_wleew3fi_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_wleew3fi_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_wleew3fi_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_wleew3fi_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_wleew3fi_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_wleew3fi_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_wleew3fi_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..bd55206 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_wleew3fi_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_wleew3fi_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_wleew3fi_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_wleew3fi_wpftmp.assets.cache new file mode 100644 index 0000000..0953ee6 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_wleew3fi_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_wleew3fi_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_wleew3fi_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_wmklzkey_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_wmklzkey_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_wmklzkey_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_wmklzkey_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_wmklzkey_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_wmklzkey_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_wmklzkey_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_wmklzkey_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..44c1f24 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_wmklzkey_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_wmklzkey_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_wmklzkey_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_wmklzkey_wpftmp.assets.cache new file mode 100644 index 0000000..73b6600 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_wmklzkey_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_wmklzkey_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_wmklzkey_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_wmuaugad_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_wmuaugad_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_wmuaugad_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_wmuaugad_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_wmuaugad_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_wmuaugad_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_wmuaugad_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_wmuaugad_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..ea2e43c --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_wmuaugad_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_wmuaugad_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_wmuaugad_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_wmuaugad_wpftmp.assets.cache new file mode 100644 index 0000000..a320b6e Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_wmuaugad_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_wmuaugad_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_wmuaugad_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_wmzphziv_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_wmzphziv_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_wmzphziv_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_wmzphziv_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_wmzphziv_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_wmzphziv_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_wmzphziv_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_wmzphziv_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..dab4742 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_wmzphziv_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_wmzphziv_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_wmzphziv_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_wmzphziv_wpftmp.assets.cache new file mode 100644 index 0000000..27c586c Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_wmzphziv_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_wmzphziv_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_wmzphziv_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_woahiati_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_woahiati_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_woahiati_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_woahiati_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_woahiati_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_woahiati_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_woahiati_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_woahiati_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..fb0c71a --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_woahiati_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_woahiati_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_woahiati_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_woahiati_wpftmp.assets.cache new file mode 100644 index 0000000..261c829 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_woahiati_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_woahiati_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_woahiati_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_wrmxwlb1_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_wrmxwlb1_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_wrmxwlb1_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_wrmxwlb1_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_wrmxwlb1_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_wrmxwlb1_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_wrmxwlb1_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_wrmxwlb1_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..c6a73da --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_wrmxwlb1_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_wrmxwlb1_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_wrmxwlb1_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_wrmxwlb1_wpftmp.assets.cache new file mode 100644 index 0000000..7aca8e7 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_wrmxwlb1_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_wsb2pyaq_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_wsb2pyaq_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_wsb2pyaq_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_wsb2pyaq_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_wsb2pyaq_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_wsb2pyaq_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_wsb2pyaq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_wsb2pyaq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..fab3c3b --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_wsb2pyaq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_wsb2pyaq_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_wsb2pyaq_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_wsb2pyaq_wpftmp.assets.cache new file mode 100644 index 0000000..5eb4192 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_wsb2pyaq_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_wsb2pyaq_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_wsb2pyaq_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_wsylrd24_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_wsylrd24_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_wsylrd24_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_wsylrd24_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_wsylrd24_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_wsylrd24_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_wsylrd24_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_wsylrd24_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..bafa93a --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_wsylrd24_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_wsylrd24_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_wsylrd24_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_wsylrd24_wpftmp.assets.cache new file mode 100644 index 0000000..19b3a87 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_wsylrd24_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_wsylrd24_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_wsylrd24_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_wt5rw34x_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_wt5rw34x_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_wt5rw34x_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_wt5rw34x_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_wt5rw34x_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_wt5rw34x_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_wt5rw34x_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_wt5rw34x_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..c35270e --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_wt5rw34x_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_wt5rw34x_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_wt5rw34x_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_wt5rw34x_wpftmp.assets.cache new file mode 100644 index 0000000..bd688af Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_wt5rw34x_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_wt5rw34x_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_wt5rw34x_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_x0u3nsjf_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_x0u3nsjf_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_x0u3nsjf_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_x0u3nsjf_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_x0u3nsjf_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_x0u3nsjf_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_x0u3nsjf_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_x0u3nsjf_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..10168f6 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_x0u3nsjf_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_x0u3nsjf_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_x0u3nsjf_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_x0u3nsjf_wpftmp.assets.cache new file mode 100644 index 0000000..cdbea6a Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_x0u3nsjf_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_x0u3nsjf_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_x0u3nsjf_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_xc2v3dwz_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_xc2v3dwz_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_xc2v3dwz_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_xc2v3dwz_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_xc2v3dwz_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_xc2v3dwz_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_xc2v3dwz_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_xc2v3dwz_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..6757273 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_xc2v3dwz_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_xc2v3dwz_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_xc2v3dwz_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_xc2v3dwz_wpftmp.assets.cache new file mode 100644 index 0000000..4ca0f5a Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_xc2v3dwz_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_xc2v3dwz_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_xc2v3dwz_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_xeqjg3tp_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_xeqjg3tp_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_xeqjg3tp_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_xeqjg3tp_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_xeqjg3tp_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_xeqjg3tp_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_xeqjg3tp_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_xeqjg3tp_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..2e33b5a --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_xeqjg3tp_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_xeqjg3tp_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_xeqjg3tp_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_xeqjg3tp_wpftmp.assets.cache new file mode 100644 index 0000000..7ac8d0b Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_xeqjg3tp_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_xeqjg3tp_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_xeqjg3tp_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_xiwkley0_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_xiwkley0_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_xiwkley0_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_xiwkley0_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_xiwkley0_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_xiwkley0_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_xiwkley0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_xiwkley0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..5b9dbf9 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_xiwkley0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_xiwkley0_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_xiwkley0_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_xiwkley0_wpftmp.assets.cache new file mode 100644 index 0000000..05e063f Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_xiwkley0_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_xiwkley0_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_xiwkley0_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_xky5upke_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_xky5upke_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_xky5upke_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_xky5upke_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_xky5upke_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_xky5upke_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_xky5upke_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_xky5upke_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..eb482d6 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_xky5upke_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_xky5upke_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_xky5upke_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_xky5upke_wpftmp.assets.cache new file mode 100644 index 0000000..df79589 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_xky5upke_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_xky5upke_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_xky5upke_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_xlectbqj_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_xlectbqj_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_xlectbqj_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_xlectbqj_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_xlectbqj_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_xlectbqj_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_xlectbqj_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_xlectbqj_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..39b9060 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_xlectbqj_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_xlectbqj_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_xlectbqj_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_xlectbqj_wpftmp.assets.cache new file mode 100644 index 0000000..3893a9e Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_xlectbqj_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_xlectbqj_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_xlectbqj_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_xsujialy_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_xsujialy_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_xsujialy_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_xsujialy_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_xsujialy_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_xsujialy_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_xsujialy_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_xsujialy_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..267f7b4 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_xsujialy_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_xsujialy_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_xsujialy_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_xsujialy_wpftmp.assets.cache new file mode 100644 index 0000000..c749e80 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_xsujialy_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_xsujialy_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_xsujialy_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_xyglkggy_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_xyglkggy_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_xyglkggy_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_xyglkggy_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_xyglkggy_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_xyglkggy_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_xyglkggy_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_xyglkggy_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..7e97742 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_xyglkggy_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_xyglkggy_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_xyglkggy_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_xyglkggy_wpftmp.assets.cache new file mode 100644 index 0000000..675840f Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_xyglkggy_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_xyglkggy_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_xyglkggy_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_y0grvbnw_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_y0grvbnw_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_y0grvbnw_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_y0grvbnw_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_y0grvbnw_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_y0grvbnw_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_y0grvbnw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_y0grvbnw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..0f44ac5 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_y0grvbnw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_y0grvbnw_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_y0grvbnw_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_y0grvbnw_wpftmp.assets.cache new file mode 100644 index 0000000..12edb17 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_y0grvbnw_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_y0grvbnw_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_y0grvbnw_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_y152km2t_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_y152km2t_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_y152km2t_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_y152km2t_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_y152km2t_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_y152km2t_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_y152km2t_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_y152km2t_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..974db61 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_y152km2t_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_y152km2t_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_y152km2t_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_y152km2t_wpftmp.assets.cache new file mode 100644 index 0000000..159134a Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_y152km2t_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_y152km2t_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_y152km2t_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_y5wuc2v2_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_y5wuc2v2_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_y5wuc2v2_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_y5wuc2v2_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_y5wuc2v2_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_y5wuc2v2_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_y5wuc2v2_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_y5wuc2v2_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..ce15ebb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_y5wuc2v2_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_y5wuc2v2_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_y5wuc2v2_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_y5wuc2v2_wpftmp.assets.cache new file mode 100644 index 0000000..3affabc Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_y5wuc2v2_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_y5wuc2v2_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_y5wuc2v2_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_yc0lhzvl_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_yc0lhzvl_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_yc0lhzvl_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_yc0lhzvl_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_yc0lhzvl_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_yc0lhzvl_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_yc0lhzvl_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_yc0lhzvl_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..5dec9dc --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_yc0lhzvl_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_yc0lhzvl_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_yc0lhzvl_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_yc0lhzvl_wpftmp.assets.cache new file mode 100644 index 0000000..9871c84 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_yc0lhzvl_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_yc0lhzvl_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_yc0lhzvl_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_yccrzz4k_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_yccrzz4k_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_yccrzz4k_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_yccrzz4k_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_yccrzz4k_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_yccrzz4k_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_yccrzz4k_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_yccrzz4k_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..3f803f0 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_yccrzz4k_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_yccrzz4k_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_yccrzz4k_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_yccrzz4k_wpftmp.assets.cache new file mode 100644 index 0000000..6765678 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_yccrzz4k_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_yccrzz4k_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_yccrzz4k_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ydgkslac_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_ydgkslac_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ydgkslac_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ydgkslac_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_ydgkslac_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ydgkslac_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ydgkslac_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_ydgkslac_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b5747ff --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ydgkslac_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_ydgkslac_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ydgkslac_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_ydgkslac_wpftmp.assets.cache new file mode 100644 index 0000000..79d8a4d Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_ydgkslac_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ydgkslac_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_ydgkslac_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ydih3san_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_ydih3san_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ydih3san_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ydih3san_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_ydih3san_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ydih3san_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ydih3san_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_ydih3san_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d26a32c --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ydih3san_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_ydih3san_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ydih3san_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_ydih3san_wpftmp.assets.cache new file mode 100644 index 0000000..ae06ba0 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_ydih3san_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ydih3san_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_ydih3san_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_yeljyaaq_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_yeljyaaq_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_yeljyaaq_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_yeljyaaq_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_yeljyaaq_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_yeljyaaq_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_yeljyaaq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_yeljyaaq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..ab25048 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_yeljyaaq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_yeljyaaq_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_yeljyaaq_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_yeljyaaq_wpftmp.assets.cache new file mode 100644 index 0000000..62f3f96 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_yeljyaaq_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_yeljyaaq_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_yeljyaaq_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_yfkwdl03_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_yfkwdl03_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_yfkwdl03_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_yfkwdl03_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_yfkwdl03_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_yfkwdl03_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_yfkwdl03_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_yfkwdl03_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..4ac3c7a --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_yfkwdl03_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_yfkwdl03_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_yfkwdl03_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_yfkwdl03_wpftmp.assets.cache new file mode 100644 index 0000000..1302dcd Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_yfkwdl03_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_yfkwdl03_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_yfkwdl03_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_yhb31dzu_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_yhb31dzu_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_yhb31dzu_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_yhb31dzu_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_yhb31dzu_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_yhb31dzu_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_yhb31dzu_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_yhb31dzu_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..6c5c880 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_yhb31dzu_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_yhb31dzu_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_yhb31dzu_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_yhb31dzu_wpftmp.assets.cache new file mode 100644 index 0000000..2168413 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_yhb31dzu_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_yhb31dzu_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_yhb31dzu_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_yinfjreg_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_yinfjreg_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_yinfjreg_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_yinfjreg_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_yinfjreg_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_yinfjreg_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_yinfjreg_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_yinfjreg_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..c27905c --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_yinfjreg_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_yinfjreg_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_yinfjreg_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_yinfjreg_wpftmp.assets.cache new file mode 100644 index 0000000..b884074 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_yinfjreg_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_yinfjreg_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_yinfjreg_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ysv3qvfy_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_ysv3qvfy_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ysv3qvfy_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ysv3qvfy_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_ysv3qvfy_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ysv3qvfy_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ysv3qvfy_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_ysv3qvfy_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d4f5319 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_ysv3qvfy_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_ysv3qvfy_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ysv3qvfy_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_ysv3qvfy_wpftmp.assets.cache new file mode 100644 index 0000000..2204ecb Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_ysv3qvfy_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_ysv3qvfy_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_ysv3qvfy_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_yurgamiy_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_yurgamiy_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_yurgamiy_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_yurgamiy_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_yurgamiy_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_yurgamiy_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_yurgamiy_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_yurgamiy_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..c96030d --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_yurgamiy_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_yurgamiy_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_yurgamiy_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_yurgamiy_wpftmp.assets.cache new file mode 100644 index 0000000..6163410 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_yurgamiy_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_yurgamiy_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_yurgamiy_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_zgwbkfxl_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_zgwbkfxl_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_zgwbkfxl_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_zgwbkfxl_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_zgwbkfxl_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_zgwbkfxl_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_zgwbkfxl_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_zgwbkfxl_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..40f1b11 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_zgwbkfxl_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_zgwbkfxl_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_zgwbkfxl_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_zgwbkfxl_wpftmp.assets.cache new file mode 100644 index 0000000..6aec29f Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_zgwbkfxl_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_zgwbkfxl_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_zgwbkfxl_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_zm3lkk5v_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_zm3lkk5v_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_zm3lkk5v_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_zm3lkk5v_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_zm3lkk5v_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_zm3lkk5v_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_zm3lkk5v_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_zm3lkk5v_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..7f2f6b2 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_zm3lkk5v_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_zm3lkk5v_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_zm3lkk5v_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_zm3lkk5v_wpftmp.assets.cache new file mode 100644 index 0000000..bdfb66f Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_zm3lkk5v_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_zm3lkk5v_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_zm3lkk5v_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/ERD_zrbxfqhj_wpftmp.AssemblyInfo.cs b/ERD/obj/Debug/net5.0-windows/ERD_zrbxfqhj_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..1151dde --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_zrbxfqhj_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Debug/net5.0-windows/ERD_zrbxfqhj_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Debug/net5.0-windows/ERD_zrbxfqhj_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fca45bb --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_zrbxfqhj_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61c3035b205dcb1c14ed456c623594e5cb24119d diff --git a/ERD/obj/Debug/net5.0-windows/ERD_zrbxfqhj_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Debug/net5.0-windows/ERD_zrbxfqhj_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..680b889 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/ERD_zrbxfqhj_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_zrbxfqhj_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_zrbxfqhj_wpftmp.assets.cache b/ERD/obj/Debug/net5.0-windows/ERD_zrbxfqhj_wpftmp.assets.cache new file mode 100644 index 0000000..39b4bac Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ERD_zrbxfqhj_wpftmp.assets.cache differ diff --git a/ERD/obj/Debug/net5.0-windows/ERD_zrbxfqhj_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Debug/net5.0-windows/ERD_zrbxfqhj_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Debug/net5.0-windows/EntityObject.baml b/ERD/obj/Debug/net5.0-windows/EntityObject.baml new file mode 100644 index 0000000..c0b6146 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/EntityObject.baml differ diff --git a/ERD/obj/Debug/net5.0-windows/EntityObject.g.cs b/ERD/obj/Debug/net5.0-windows/EntityObject.g.cs new file mode 100644 index 0000000..a97f3cf --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/EntityObject.g.cs @@ -0,0 +1,75 @@ +#pragma checksum "..\..\..\EntityObject.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "53EE6E7B05846C418433D1C44C3356AB79E1F354" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +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 ERD { + + + /// + /// EntityObject + /// + public partial class EntityObject : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector { + + private bool _contentLoaded; + + /// + /// InitializeComponent + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.3.0")] + public void InitializeComponent() { + if (_contentLoaded) { + return; + } + _contentLoaded = true; + System.Uri resourceLocater = new System.Uri("/ERD;component/entityobject.xaml", System.UriKind.Relative); + + #line 1 "..\..\..\EntityObject.xaml" + System.Windows.Application.LoadComponent(this, resourceLocater); + + #line default + #line hidden + } + + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.3.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) { + this._contentLoaded = true; + } + } +} + diff --git a/ERD/obj/Debug/net5.0-windows/EntityObject.g.i.cs b/ERD/obj/Debug/net5.0-windows/EntityObject.g.i.cs new file mode 100644 index 0000000..4160811 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/EntityObject.g.i.cs @@ -0,0 +1,75 @@ +#pragma checksum "..\..\..\EntityObject.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "53EE6E7B05846C418433D1C44C3356AB79E1F354" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +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 ERD { + + + /// + /// EntityObject + /// + public partial class EntityObject : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector { + + private bool _contentLoaded; + + /// + /// InitializeComponent + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.3.0")] + public void InitializeComponent() { + if (_contentLoaded) { + return; + } + _contentLoaded = true; + System.Uri resourceLocater = new System.Uri("/ERD;V1.0.0.0;component/entityobject.xaml", System.UriKind.Relative); + + #line 1 "..\..\..\EntityObject.xaml" + System.Windows.Application.LoadComponent(this, resourceLocater); + + #line default + #line hidden + } + + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.3.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) { + this._contentLoaded = true; + } + } +} + diff --git a/ERD/obj/Debug/net5.0-windows/GeneratedInternalTypeHelper.g.cs b/ERD/obj/Debug/net5.0-windows/GeneratedInternalTypeHelper.g.cs new file mode 100644 index 0000000..71f29c3 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/GeneratedInternalTypeHelper.g.cs @@ -0,0 +1,62 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace XamlGeneratedNamespace { + + + /// + /// GeneratedInternalTypeHelper + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.3.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public sealed class GeneratedInternalTypeHelper : System.Windows.Markup.InternalTypeHelper { + + /// + /// CreateInstance + /// + protected override object CreateInstance(System.Type type, System.Globalization.CultureInfo culture) { + return System.Activator.CreateInstance(type, ((System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.NonPublic) + | (System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.CreateInstance)), null, null, culture); + } + + /// + /// GetPropertyValue + /// + protected override object GetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, System.Globalization.CultureInfo culture) { + return propertyInfo.GetValue(target, System.Reflection.BindingFlags.Default, null, null, culture); + } + + /// + /// SetPropertyValue + /// + protected override void SetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, object value, System.Globalization.CultureInfo culture) { + propertyInfo.SetValue(target, value, System.Reflection.BindingFlags.Default, null, null, culture); + } + + /// + /// CreateDelegate + /// + protected override System.Delegate CreateDelegate(System.Type delegateType, object target, string handler) { + return ((System.Delegate)(target.GetType().InvokeMember("_CreateDelegate", (System.Reflection.BindingFlags.InvokeMethod + | (System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance)), null, target, new object[] { + delegateType, + handler}, null))); + } + + /// + /// AddEventHandler + /// + protected override void AddEventHandler(System.Reflection.EventInfo eventInfo, object target, System.Delegate handler) { + eventInfo.AddEventHandler(target, handler); + } + } +} + diff --git a/ERD/obj/Debug/net5.0-windows/GeneratedInternalTypeHelper.g.i.cs b/ERD/obj/Debug/net5.0-windows/GeneratedInternalTypeHelper.g.i.cs new file mode 100644 index 0000000..71f29c3 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/GeneratedInternalTypeHelper.g.i.cs @@ -0,0 +1,62 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace XamlGeneratedNamespace { + + + /// + /// GeneratedInternalTypeHelper + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.3.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public sealed class GeneratedInternalTypeHelper : System.Windows.Markup.InternalTypeHelper { + + /// + /// CreateInstance + /// + protected override object CreateInstance(System.Type type, System.Globalization.CultureInfo culture) { + return System.Activator.CreateInstance(type, ((System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.NonPublic) + | (System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.CreateInstance)), null, null, culture); + } + + /// + /// GetPropertyValue + /// + protected override object GetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, System.Globalization.CultureInfo culture) { + return propertyInfo.GetValue(target, System.Reflection.BindingFlags.Default, null, null, culture); + } + + /// + /// SetPropertyValue + /// + protected override void SetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, object value, System.Globalization.CultureInfo culture) { + propertyInfo.SetValue(target, value, System.Reflection.BindingFlags.Default, null, null, culture); + } + + /// + /// CreateDelegate + /// + protected override System.Delegate CreateDelegate(System.Type delegateType, object target, string handler) { + return ((System.Delegate)(target.GetType().InvokeMember("_CreateDelegate", (System.Reflection.BindingFlags.InvokeMethod + | (System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance)), null, target, new object[] { + delegateType, + handler}, null))); + } + + /// + /// AddEventHandler + /// + protected override void AddEventHandler(System.Reflection.EventInfo eventInfo, object target, System.Delegate handler) { + eventInfo.AddEventHandler(target, handler); + } + } +} + diff --git a/ERD/obj/Debug/net5.0-windows/MainWindow.baml b/ERD/obj/Debug/net5.0-windows/MainWindow.baml new file mode 100644 index 0000000..08f2b94 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/MainWindow.baml differ diff --git a/ERD/obj/Debug/net5.0-windows/MainWindow.g.cs b/ERD/obj/Debug/net5.0-windows/MainWindow.g.cs new file mode 100644 index 0000000..ab593e4 --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/MainWindow.g.cs @@ -0,0 +1,141 @@ +#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "215BB25589C4419714631646FE824C093EDEB32C" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using ERD; +using ERD.Components; +using ERD.Diagramming_Logic.Elements; +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 ERD { + + + /// + /// MainWindow + /// + public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { + + + #line 16 "..\..\..\MainWindow.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.Canvas DrawingCanvas; + + #line default + #line hidden + + + #line 19 "..\..\..\MainWindow.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.ContentControl Entity; + + #line default + #line hidden + + private bool _contentLoaded; + + /// + /// InitializeComponent + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.3.0")] + public void InitializeComponent() { + if (_contentLoaded) { + return; + } + _contentLoaded = true; + System.Uri resourceLocater = new System.Uri("/ERD;component/mainwindow.xaml", System.UriKind.Relative); + + #line 1 "..\..\..\MainWindow.xaml" + System.Windows.Application.LoadComponent(this, resourceLocater); + + #line default + #line hidden + } + + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.3.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 11 "..\..\..\MainWindow.xaml" + ((ERD.MainWindow)(target)).Loaded += new System.Windows.RoutedEventHandler(this.MainWindow_OnLoaded); + + #line default + #line hidden + return; + case 2: + this.DrawingCanvas = ((System.Windows.Controls.Canvas)(target)); + + #line 16 "..\..\..\MainWindow.xaml" + this.DrawingCanvas.KeyUp += new System.Windows.Input.KeyEventHandler(this.KeyUnpressed); + + #line default + #line hidden + + #line 16 "..\..\..\MainWindow.xaml" + this.DrawingCanvas.KeyDown += new System.Windows.Input.KeyEventHandler(this.KeyPressed); + + #line default + #line hidden + + #line 16 "..\..\..\MainWindow.xaml" + this.DrawingCanvas.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.DrawingCanvas_OnMouseDown); + + #line default + #line hidden + + #line 16 "..\..\..\MainWindow.xaml" + this.DrawingCanvas.PreviewMouseRightButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.DrawingCanvas_PreviewMouseRightButtonUp); + + #line default + #line hidden + + #line 16 "..\..\..\MainWindow.xaml" + this.DrawingCanvas.PreviewMouseMove += new System.Windows.Input.MouseEventHandler(this.DrawingCanvas_OnPreviewMouseMove); + + #line default + #line hidden + return; + case 3: + this.Entity = ((System.Windows.Controls.ContentControl)(target)); + return; + } + this._contentLoaded = true; + } + } +} + diff --git a/ERD/obj/Debug/net5.0-windows/MainWindow.g.i.cs b/ERD/obj/Debug/net5.0-windows/MainWindow.g.i.cs new file mode 100644 index 0000000..8d287bf --- /dev/null +++ b/ERD/obj/Debug/net5.0-windows/MainWindow.g.i.cs @@ -0,0 +1,141 @@ +#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "215BB25589C4419714631646FE824C093EDEB32C" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using ERD; +using ERD.Components; +using ERD.Diagramming_Logic.Elements; +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 ERD { + + + /// + /// MainWindow + /// + public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { + + + #line 16 "..\..\..\MainWindow.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.Canvas DrawingCanvas; + + #line default + #line hidden + + + #line 19 "..\..\..\MainWindow.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.ContentControl Entity; + + #line default + #line hidden + + private bool _contentLoaded; + + /// + /// InitializeComponent + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.3.0")] + public void InitializeComponent() { + if (_contentLoaded) { + return; + } + _contentLoaded = true; + System.Uri resourceLocater = new System.Uri("/ERD;V1.0.0.0;component/mainwindow.xaml", System.UriKind.Relative); + + #line 1 "..\..\..\MainWindow.xaml" + System.Windows.Application.LoadComponent(this, resourceLocater); + + #line default + #line hidden + } + + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.3.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 11 "..\..\..\MainWindow.xaml" + ((ERD.MainWindow)(target)).Loaded += new System.Windows.RoutedEventHandler(this.MainWindow_OnLoaded); + + #line default + #line hidden + return; + case 2: + this.DrawingCanvas = ((System.Windows.Controls.Canvas)(target)); + + #line 16 "..\..\..\MainWindow.xaml" + this.DrawingCanvas.KeyUp += new System.Windows.Input.KeyEventHandler(this.KeyUnpressed); + + #line default + #line hidden + + #line 16 "..\..\..\MainWindow.xaml" + this.DrawingCanvas.KeyDown += new System.Windows.Input.KeyEventHandler(this.KeyPressed); + + #line default + #line hidden + + #line 16 "..\..\..\MainWindow.xaml" + this.DrawingCanvas.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.DrawingCanvas_OnMouseDown); + + #line default + #line hidden + + #line 16 "..\..\..\MainWindow.xaml" + this.DrawingCanvas.PreviewMouseRightButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.DrawingCanvas_PreviewMouseRightButtonUp); + + #line default + #line hidden + + #line 16 "..\..\..\MainWindow.xaml" + this.DrawingCanvas.PreviewMouseMove += new System.Windows.Input.MouseEventHandler(this.DrawingCanvas_OnPreviewMouseMove); + + #line default + #line hidden + return; + case 3: + this.Entity = ((System.Windows.Controls.ContentControl)(target)); + return; + } + this._contentLoaded = true; + } + } +} + diff --git a/ERD/obj/Debug/net5.0-windows/apphost.exe b/ERD/obj/Debug/net5.0-windows/apphost.exe new file mode 100644 index 0000000..8f6e966 Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/apphost.exe differ diff --git a/ERD/obj/Debug/net5.0-windows/ref/ERD.dll b/ERD/obj/Debug/net5.0-windows/ref/ERD.dll new file mode 100644 index 0000000..23f1d9b Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/ref/ERD.dll differ diff --git a/ERD/obj/Debug/net5.0-windows/refint/ERD.dll b/ERD/obj/Debug/net5.0-windows/refint/ERD.dll new file mode 100644 index 0000000..23f1d9b Binary files /dev/null and b/ERD/obj/Debug/net5.0-windows/refint/ERD.dll differ diff --git a/ERD/obj/ERD.csproj.nuget.dgspec.json b/ERD/obj/ERD.csproj.nuget.dgspec.json new file mode 100644 index 0000000..e7e1d9d --- /dev/null +++ b/ERD/obj/ERD.csproj.nuget.dgspec.json @@ -0,0 +1,65 @@ +{ + "format": 1, + "restore": { + "D:\\csharp\\wpf1\\ERD\\ERD\\ERD.csproj": {} + }, + "projects": { + "D:\\csharp\\wpf1\\ERD\\ERD\\ERD.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\csharp\\wpf1\\ERD\\ERD\\ERD.csproj", + "projectName": "ERD", + "projectPath": "D:\\csharp\\wpf1\\ERD\\ERD\\ERD.csproj", + "packagesPath": "C:\\Users\\dhanr\\.nuget\\packages\\", + "outputPath": "D:\\csharp\\wpf1\\ERD\\ERD\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\dhanr\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0-windows7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net5.0-windows7.0": { + "targetAlias": "net5.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0-windows7.0": { + "targetAlias": "net5.0-windows", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WPF": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.201\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/ERD/obj/ERD.csproj.nuget.g.props b/ERD/obj/ERD.csproj.nuget.g.props new file mode 100644 index 0000000..72d26ce --- /dev/null +++ b/ERD/obj/ERD.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\dhanr\.nuget\packages\ + PackageReference + 6.1.0 + + + + + \ No newline at end of file diff --git a/ERD/obj/ERD.csproj.nuget.g.targets b/ERD/obj/ERD.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/ERD/obj/ERD.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/ERD/obj/ERD_4kdvqmlq_wpftmp.csproj.nuget.dgspec.json b/ERD/obj/ERD_4kdvqmlq_wpftmp.csproj.nuget.dgspec.json new file mode 100644 index 0000000..e7e1d9d --- /dev/null +++ b/ERD/obj/ERD_4kdvqmlq_wpftmp.csproj.nuget.dgspec.json @@ -0,0 +1,65 @@ +{ + "format": 1, + "restore": { + "D:\\csharp\\wpf1\\ERD\\ERD\\ERD.csproj": {} + }, + "projects": { + "D:\\csharp\\wpf1\\ERD\\ERD\\ERD.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\csharp\\wpf1\\ERD\\ERD\\ERD.csproj", + "projectName": "ERD", + "projectPath": "D:\\csharp\\wpf1\\ERD\\ERD\\ERD.csproj", + "packagesPath": "C:\\Users\\dhanr\\.nuget\\packages\\", + "outputPath": "D:\\csharp\\wpf1\\ERD\\ERD\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\dhanr\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0-windows7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net5.0-windows7.0": { + "targetAlias": "net5.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0-windows7.0": { + "targetAlias": "net5.0-windows", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WPF": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.201\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/ERD/obj/ERD_4kdvqmlq_wpftmp.csproj.nuget.g.props b/ERD/obj/ERD_4kdvqmlq_wpftmp.csproj.nuget.g.props new file mode 100644 index 0000000..72d26ce --- /dev/null +++ b/ERD/obj/ERD_4kdvqmlq_wpftmp.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\dhanr\.nuget\packages\ + PackageReference + 6.1.0 + + + + + \ No newline at end of file diff --git a/ERD/obj/ERD_4kdvqmlq_wpftmp.csproj.nuget.g.targets b/ERD/obj/ERD_4kdvqmlq_wpftmp.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/ERD/obj/ERD_4kdvqmlq_wpftmp.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/ERD/obj/ERD_5ljw5qzc_wpftmp.csproj.nuget.dgspec.json b/ERD/obj/ERD_5ljw5qzc_wpftmp.csproj.nuget.dgspec.json new file mode 100644 index 0000000..e7e1d9d --- /dev/null +++ b/ERD/obj/ERD_5ljw5qzc_wpftmp.csproj.nuget.dgspec.json @@ -0,0 +1,65 @@ +{ + "format": 1, + "restore": { + "D:\\csharp\\wpf1\\ERD\\ERD\\ERD.csproj": {} + }, + "projects": { + "D:\\csharp\\wpf1\\ERD\\ERD\\ERD.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\csharp\\wpf1\\ERD\\ERD\\ERD.csproj", + "projectName": "ERD", + "projectPath": "D:\\csharp\\wpf1\\ERD\\ERD\\ERD.csproj", + "packagesPath": "C:\\Users\\dhanr\\.nuget\\packages\\", + "outputPath": "D:\\csharp\\wpf1\\ERD\\ERD\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\dhanr\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0-windows7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net5.0-windows7.0": { + "targetAlias": "net5.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0-windows7.0": { + "targetAlias": "net5.0-windows", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WPF": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.201\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/ERD/obj/ERD_5ljw5qzc_wpftmp.csproj.nuget.g.props b/ERD/obj/ERD_5ljw5qzc_wpftmp.csproj.nuget.g.props new file mode 100644 index 0000000..72d26ce --- /dev/null +++ b/ERD/obj/ERD_5ljw5qzc_wpftmp.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\dhanr\.nuget\packages\ + PackageReference + 6.1.0 + + + + + \ No newline at end of file diff --git a/ERD/obj/ERD_5ljw5qzc_wpftmp.csproj.nuget.g.targets b/ERD/obj/ERD_5ljw5qzc_wpftmp.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/ERD/obj/ERD_5ljw5qzc_wpftmp.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/ERD/obj/ERD_hsrxtbd3_wpftmp.csproj.nuget.dgspec.json b/ERD/obj/ERD_hsrxtbd3_wpftmp.csproj.nuget.dgspec.json new file mode 100644 index 0000000..e7e1d9d --- /dev/null +++ b/ERD/obj/ERD_hsrxtbd3_wpftmp.csproj.nuget.dgspec.json @@ -0,0 +1,65 @@ +{ + "format": 1, + "restore": { + "D:\\csharp\\wpf1\\ERD\\ERD\\ERD.csproj": {} + }, + "projects": { + "D:\\csharp\\wpf1\\ERD\\ERD\\ERD.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\csharp\\wpf1\\ERD\\ERD\\ERD.csproj", + "projectName": "ERD", + "projectPath": "D:\\csharp\\wpf1\\ERD\\ERD\\ERD.csproj", + "packagesPath": "C:\\Users\\dhanr\\.nuget\\packages\\", + "outputPath": "D:\\csharp\\wpf1\\ERD\\ERD\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\dhanr\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0-windows7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net5.0-windows7.0": { + "targetAlias": "net5.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0-windows7.0": { + "targetAlias": "net5.0-windows", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WPF": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.201\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/ERD/obj/ERD_hsrxtbd3_wpftmp.csproj.nuget.g.props b/ERD/obj/ERD_hsrxtbd3_wpftmp.csproj.nuget.g.props new file mode 100644 index 0000000..72d26ce --- /dev/null +++ b/ERD/obj/ERD_hsrxtbd3_wpftmp.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\dhanr\.nuget\packages\ + PackageReference + 6.1.0 + + + + + \ No newline at end of file diff --git a/ERD/obj/ERD_hsrxtbd3_wpftmp.csproj.nuget.g.targets b/ERD/obj/ERD_hsrxtbd3_wpftmp.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/ERD/obj/ERD_hsrxtbd3_wpftmp.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/ERD/obj/ERD_k54bhqqw_wpftmp.csproj.nuget.dgspec.json b/ERD/obj/ERD_k54bhqqw_wpftmp.csproj.nuget.dgspec.json new file mode 100644 index 0000000..e7e1d9d --- /dev/null +++ b/ERD/obj/ERD_k54bhqqw_wpftmp.csproj.nuget.dgspec.json @@ -0,0 +1,65 @@ +{ + "format": 1, + "restore": { + "D:\\csharp\\wpf1\\ERD\\ERD\\ERD.csproj": {} + }, + "projects": { + "D:\\csharp\\wpf1\\ERD\\ERD\\ERD.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\csharp\\wpf1\\ERD\\ERD\\ERD.csproj", + "projectName": "ERD", + "projectPath": "D:\\csharp\\wpf1\\ERD\\ERD\\ERD.csproj", + "packagesPath": "C:\\Users\\dhanr\\.nuget\\packages\\", + "outputPath": "D:\\csharp\\wpf1\\ERD\\ERD\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\dhanr\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0-windows7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net5.0-windows7.0": { + "targetAlias": "net5.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0-windows7.0": { + "targetAlias": "net5.0-windows", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WPF": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.201\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/ERD/obj/ERD_k54bhqqw_wpftmp.csproj.nuget.g.props b/ERD/obj/ERD_k54bhqqw_wpftmp.csproj.nuget.g.props new file mode 100644 index 0000000..72d26ce --- /dev/null +++ b/ERD/obj/ERD_k54bhqqw_wpftmp.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\dhanr\.nuget\packages\ + PackageReference + 6.1.0 + + + + + \ No newline at end of file diff --git a/ERD/obj/ERD_k54bhqqw_wpftmp.csproj.nuget.g.targets b/ERD/obj/ERD_k54bhqqw_wpftmp.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/ERD/obj/ERD_k54bhqqw_wpftmp.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/ERD/obj/ERD_kiuhptvw_wpftmp.csproj.nuget.dgspec.json b/ERD/obj/ERD_kiuhptvw_wpftmp.csproj.nuget.dgspec.json new file mode 100644 index 0000000..e7e1d9d --- /dev/null +++ b/ERD/obj/ERD_kiuhptvw_wpftmp.csproj.nuget.dgspec.json @@ -0,0 +1,65 @@ +{ + "format": 1, + "restore": { + "D:\\csharp\\wpf1\\ERD\\ERD\\ERD.csproj": {} + }, + "projects": { + "D:\\csharp\\wpf1\\ERD\\ERD\\ERD.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\csharp\\wpf1\\ERD\\ERD\\ERD.csproj", + "projectName": "ERD", + "projectPath": "D:\\csharp\\wpf1\\ERD\\ERD\\ERD.csproj", + "packagesPath": "C:\\Users\\dhanr\\.nuget\\packages\\", + "outputPath": "D:\\csharp\\wpf1\\ERD\\ERD\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\dhanr\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0-windows7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net5.0-windows7.0": { + "targetAlias": "net5.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0-windows7.0": { + "targetAlias": "net5.0-windows", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WPF": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.201\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/ERD/obj/ERD_kiuhptvw_wpftmp.csproj.nuget.g.props b/ERD/obj/ERD_kiuhptvw_wpftmp.csproj.nuget.g.props new file mode 100644 index 0000000..72d26ce --- /dev/null +++ b/ERD/obj/ERD_kiuhptvw_wpftmp.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\dhanr\.nuget\packages\ + PackageReference + 6.1.0 + + + + + \ No newline at end of file diff --git a/ERD/obj/ERD_kiuhptvw_wpftmp.csproj.nuget.g.targets b/ERD/obj/ERD_kiuhptvw_wpftmp.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/ERD/obj/ERD_kiuhptvw_wpftmp.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/ERD/obj/ERD_wrmxwlb1_wpftmp.csproj.nuget.dgspec.json b/ERD/obj/ERD_wrmxwlb1_wpftmp.csproj.nuget.dgspec.json new file mode 100644 index 0000000..e7e1d9d --- /dev/null +++ b/ERD/obj/ERD_wrmxwlb1_wpftmp.csproj.nuget.dgspec.json @@ -0,0 +1,65 @@ +{ + "format": 1, + "restore": { + "D:\\csharp\\wpf1\\ERD\\ERD\\ERD.csproj": {} + }, + "projects": { + "D:\\csharp\\wpf1\\ERD\\ERD\\ERD.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\csharp\\wpf1\\ERD\\ERD\\ERD.csproj", + "projectName": "ERD", + "projectPath": "D:\\csharp\\wpf1\\ERD\\ERD\\ERD.csproj", + "packagesPath": "C:\\Users\\dhanr\\.nuget\\packages\\", + "outputPath": "D:\\csharp\\wpf1\\ERD\\ERD\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\dhanr\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0-windows7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net5.0-windows7.0": { + "targetAlias": "net5.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0-windows7.0": { + "targetAlias": "net5.0-windows", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WPF": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.201\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/ERD/obj/ERD_wrmxwlb1_wpftmp.csproj.nuget.g.props b/ERD/obj/ERD_wrmxwlb1_wpftmp.csproj.nuget.g.props new file mode 100644 index 0000000..72d26ce --- /dev/null +++ b/ERD/obj/ERD_wrmxwlb1_wpftmp.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\dhanr\.nuget\packages\ + PackageReference + 6.1.0 + + + + + \ No newline at end of file diff --git a/ERD/obj/ERD_wrmxwlb1_wpftmp.csproj.nuget.g.targets b/ERD/obj/ERD_wrmxwlb1_wpftmp.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/ERD/obj/ERD_wrmxwlb1_wpftmp.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/ERD/obj/Release/net5.0-windows/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/ERD/obj/Release/net5.0-windows/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2f7e5ec --- /dev/null +++ b/ERD/obj/Release/net5.0-windows/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/ERD/obj/Release/net5.0-windows/App.baml b/ERD/obj/Release/net5.0-windows/App.baml new file mode 100644 index 0000000..68d8de9 Binary files /dev/null and b/ERD/obj/Release/net5.0-windows/App.baml differ diff --git a/ERD/obj/Release/net5.0-windows/App.g.cs b/ERD/obj/Release/net5.0-windows/App.g.cs new file mode 100644 index 0000000..690c3d1 --- /dev/null +++ b/ERD/obj/Release/net5.0-windows/App.g.cs @@ -0,0 +1,84 @@ +#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "7DA0297AA8E0A106E59F1A2E23EDB5C17C688292" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using ERD; +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 ERD { + + + /// + /// App + /// + public partial class App : System.Windows.Application { + + private bool _contentLoaded; + + /// + /// InitializeComponent + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.3.0")] + public void InitializeComponent() { + if (_contentLoaded) { + return; + } + _contentLoaded = true; + + #line 5 "..\..\..\App.xaml" + this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative); + + #line default + #line hidden + System.Uri resourceLocater = new System.Uri("/ERD;component/app.xaml", System.UriKind.Relative); + + #line 1 "..\..\..\App.xaml" + System.Windows.Application.LoadComponent(this, resourceLocater); + + #line default + #line hidden + } + + /// + /// Application Entry Point. + /// + [System.STAThreadAttribute()] + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.3.0")] + public static void Main() { + ERD.App app = new ERD.App(); + app.InitializeComponent(); + app.Run(); + } + } +} + diff --git a/ERD/obj/Release/net5.0-windows/App.g.i.cs b/ERD/obj/Release/net5.0-windows/App.g.i.cs new file mode 100644 index 0000000..28e2d53 --- /dev/null +++ b/ERD/obj/Release/net5.0-windows/App.g.i.cs @@ -0,0 +1,84 @@ +#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "7DA0297AA8E0A106E59F1A2E23EDB5C17C688292" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using ERD; +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 ERD { + + + /// + /// App + /// + public partial class App : System.Windows.Application { + + private bool _contentLoaded; + + /// + /// InitializeComponent + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.3.0")] + public void InitializeComponent() { + if (_contentLoaded) { + return; + } + _contentLoaded = true; + + #line 5 "..\..\..\App.xaml" + this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative); + + #line default + #line hidden + System.Uri resourceLocater = new System.Uri("/ERD;V1.0.0.0;component/app.xaml", System.UriKind.Relative); + + #line 1 "..\..\..\App.xaml" + System.Windows.Application.LoadComponent(this, resourceLocater); + + #line default + #line hidden + } + + /// + /// Application Entry Point. + /// + [System.STAThreadAttribute()] + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.3.0")] + public static void Main() { + ERD.App app = new ERD.App(); + app.InitializeComponent(); + app.Run(); + } + } +} + diff --git a/ERD/obj/Release/net5.0-windows/Components/EntityCard.baml b/ERD/obj/Release/net5.0-windows/Components/EntityCard.baml new file mode 100644 index 0000000..0acdc1a Binary files /dev/null and b/ERD/obj/Release/net5.0-windows/Components/EntityCard.baml differ diff --git a/ERD/obj/Release/net5.0-windows/Components/EntityCard.g.cs b/ERD/obj/Release/net5.0-windows/Components/EntityCard.g.cs new file mode 100644 index 0000000..3aa1376 --- /dev/null +++ b/ERD/obj/Release/net5.0-windows/Components/EntityCard.g.cs @@ -0,0 +1,91 @@ +#pragma checksum "..\..\..\..\Components\EntityCard.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "9BC7193E6A638AA0A07AB8F605BC75237FF028DF" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using ERD; +using ERD.Components; +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 ERD.Components { + + + /// + /// EntityCard + /// + public partial class EntityCard : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector { + + + #line 10 "..\..\..\..\Components\EntityCard.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal ERD.Components.EntityCard asd; + + #line default + #line hidden + + private bool _contentLoaded; + + /// + /// InitializeComponent + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.3.0")] + public void InitializeComponent() { + if (_contentLoaded) { + return; + } + _contentLoaded = true; + System.Uri resourceLocater = new System.Uri("/ERD;component/components/entitycard.xaml", System.UriKind.Relative); + + #line 1 "..\..\..\..\Components\EntityCard.xaml" + System.Windows.Application.LoadComponent(this, resourceLocater); + + #line default + #line hidden + } + + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.3.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: + this.asd = ((ERD.Components.EntityCard)(target)); + return; + } + this._contentLoaded = true; + } + } +} + diff --git a/ERD/obj/Release/net5.0-windows/Components/EntityCard.g.i.cs b/ERD/obj/Release/net5.0-windows/Components/EntityCard.g.i.cs new file mode 100644 index 0000000..1c59d1e --- /dev/null +++ b/ERD/obj/Release/net5.0-windows/Components/EntityCard.g.i.cs @@ -0,0 +1,91 @@ +#pragma checksum "..\..\..\..\Components\EntityCard.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "9BC7193E6A638AA0A07AB8F605BC75237FF028DF" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using ERD; +using ERD.Components; +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 ERD.Components { + + + /// + /// EntityCard + /// + public partial class EntityCard : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector { + + + #line 10 "..\..\..\..\Components\EntityCard.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal ERD.Components.EntityCard asd; + + #line default + #line hidden + + private bool _contentLoaded; + + /// + /// InitializeComponent + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.3.0")] + public void InitializeComponent() { + if (_contentLoaded) { + return; + } + _contentLoaded = true; + System.Uri resourceLocater = new System.Uri("/ERD;V1.0.0.0;component/components/entitycard.xaml", System.UriKind.Relative); + + #line 1 "..\..\..\..\Components\EntityCard.xaml" + System.Windows.Application.LoadComponent(this, resourceLocater); + + #line default + #line hidden + } + + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.3.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: + this.asd = ((ERD.Components.EntityCard)(target)); + return; + } + this._contentLoaded = true; + } + } +} + diff --git a/ERD/obj/Release/net5.0-windows/Components/ellipse.baml b/ERD/obj/Release/net5.0-windows/Components/ellipse.baml new file mode 100644 index 0000000..7f474c0 Binary files /dev/null and b/ERD/obj/Release/net5.0-windows/Components/ellipse.baml differ diff --git a/ERD/obj/Release/net5.0-windows/Components/ellipse.g.cs b/ERD/obj/Release/net5.0-windows/Components/ellipse.g.cs new file mode 100644 index 0000000..cbeb9f4 --- /dev/null +++ b/ERD/obj/Release/net5.0-windows/Components/ellipse.g.cs @@ -0,0 +1,89 @@ +#pragma checksum "..\..\..\..\Components\ellipse.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "D8615DD82E4B4339D9FB3F993CE1AF2E4BE97A22" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +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 ERD.Components { + + + /// + /// ellipse + /// + public partial class ellipse : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector { + + + #line 9 "..\..\..\..\Components\ellipse.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal ERD.Components.ellipse Hello; + + #line default + #line hidden + + private bool _contentLoaded; + + /// + /// InitializeComponent + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.3.0")] + public void InitializeComponent() { + if (_contentLoaded) { + return; + } + _contentLoaded = true; + System.Uri resourceLocater = new System.Uri("/ERD;component/components/ellipse.xaml", System.UriKind.Relative); + + #line 1 "..\..\..\..\Components\ellipse.xaml" + System.Windows.Application.LoadComponent(this, resourceLocater); + + #line default + #line hidden + } + + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.3.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: + this.Hello = ((ERD.Components.ellipse)(target)); + return; + } + this._contentLoaded = true; + } + } +} + diff --git a/ERD/obj/Release/net5.0-windows/Components/ellipse.g.i.cs b/ERD/obj/Release/net5.0-windows/Components/ellipse.g.i.cs new file mode 100644 index 0000000..5788a8b --- /dev/null +++ b/ERD/obj/Release/net5.0-windows/Components/ellipse.g.i.cs @@ -0,0 +1,89 @@ +#pragma checksum "..\..\..\..\Components\ellipse.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "D8615DD82E4B4339D9FB3F993CE1AF2E4BE97A22" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +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 ERD.Components { + + + /// + /// ellipse + /// + public partial class ellipse : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector { + + + #line 9 "..\..\..\..\Components\ellipse.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal ERD.Components.ellipse Hello; + + #line default + #line hidden + + private bool _contentLoaded; + + /// + /// InitializeComponent + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.3.0")] + public void InitializeComponent() { + if (_contentLoaded) { + return; + } + _contentLoaded = true; + System.Uri resourceLocater = new System.Uri("/ERD;V1.0.0.0;component/components/ellipse.xaml", System.UriKind.Relative); + + #line 1 "..\..\..\..\Components\ellipse.xaml" + System.Windows.Application.LoadComponent(this, resourceLocater); + + #line default + #line hidden + } + + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.3.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: + this.Hello = ((ERD.Components.ellipse)(target)); + return; + } + this._contentLoaded = true; + } + } +} + diff --git a/ERD/obj/Release/net5.0-windows/ERD.AssemblyInfo.cs b/ERD/obj/Release/net5.0-windows/ERD.AssemblyInfo.cs new file mode 100644 index 0000000..599ef2c --- /dev/null +++ b/ERD/obj/Release/net5.0-windows/ERD.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Release/net5.0-windows/ERD.AssemblyInfoInputs.cache b/ERD/obj/Release/net5.0-windows/ERD.AssemblyInfoInputs.cache new file mode 100644 index 0000000..de0b4c1 --- /dev/null +++ b/ERD/obj/Release/net5.0-windows/ERD.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +2b78e250f2d5059346205c27e70ce1db8eecb9e0 diff --git a/ERD/obj/Release/net5.0-windows/ERD.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Release/net5.0-windows/ERD.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..960f4eb --- /dev/null +++ b/ERD/obj/Release/net5.0-windows/ERD.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Release/net5.0-windows/ERD.assets.cache b/ERD/obj/Release/net5.0-windows/ERD.assets.cache new file mode 100644 index 0000000..59c5cc3 Binary files /dev/null and b/ERD/obj/Release/net5.0-windows/ERD.assets.cache differ diff --git a/ERD/obj/Release/net5.0-windows/ERD.csproj.AssemblyReference.cache b/ERD/obj/Release/net5.0-windows/ERD.csproj.AssemblyReference.cache new file mode 100644 index 0000000..750ecc1 Binary files /dev/null and b/ERD/obj/Release/net5.0-windows/ERD.csproj.AssemblyReference.cache differ diff --git a/ERD/obj/Release/net5.0-windows/ERD.csproj.BuildWithSkipAnalyzers b/ERD/obj/Release/net5.0-windows/ERD.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Release/net5.0-windows/ERD.csproj.CoreCompileInputs.cache b/ERD/obj/Release/net5.0-windows/ERD.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..79532d8 --- /dev/null +++ b/ERD/obj/Release/net5.0-windows/ERD.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +18f92f5b010c8391cded337111ed5ff1dcadd005 diff --git a/ERD/obj/Release/net5.0-windows/ERD.csproj.FileListAbsolute.txt b/ERD/obj/Release/net5.0-windows/ERD.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..21598f6 --- /dev/null +++ b/ERD/obj/Release/net5.0-windows/ERD.csproj.FileListAbsolute.txt @@ -0,0 +1,28 @@ +D:\csharp\wpf1\ERD\ERD\bin\Release\net5.0-windows\ERD.exe +D:\csharp\wpf1\ERD\ERD\bin\Release\net5.0-windows\ERD.deps.json +D:\csharp\wpf1\ERD\ERD\bin\Release\net5.0-windows\ERD.runtimeconfig.json +D:\csharp\wpf1\ERD\ERD\bin\Release\net5.0-windows\ERD.runtimeconfig.dev.json +D:\csharp\wpf1\ERD\ERD\bin\Release\net5.0-windows\ERD.dll +D:\csharp\wpf1\ERD\ERD\bin\Release\net5.0-windows\ERD.pdb +D:\csharp\wpf1\ERD\ERD\obj\Release\net5.0-windows\ERD.csproj.AssemblyReference.cache +D:\csharp\wpf1\ERD\ERD\obj\Release\net5.0-windows\Components\ellipse.baml +D:\csharp\wpf1\ERD\ERD\obj\Release\net5.0-windows\Components\ellipse.g.cs +D:\csharp\wpf1\ERD\ERD\obj\Release\net5.0-windows\Components\EntityCard.g.cs +D:\csharp\wpf1\ERD\ERD\obj\Release\net5.0-windows\MainWindow.g.cs +D:\csharp\wpf1\ERD\ERD\obj\Release\net5.0-windows\App.g.cs +D:\csharp\wpf1\ERD\ERD\obj\Release\net5.0-windows\GeneratedInternalTypeHelper.g.cs +D:\csharp\wpf1\ERD\ERD\obj\Release\net5.0-windows\ERD_MarkupCompile.cache +D:\csharp\wpf1\ERD\ERD\obj\Release\net5.0-windows\ERD_MarkupCompile.lref +D:\csharp\wpf1\ERD\ERD\obj\Release\net5.0-windows\App.baml +D:\csharp\wpf1\ERD\ERD\obj\Release\net5.0-windows\Components\EntityCard.baml +D:\csharp\wpf1\ERD\ERD\obj\Release\net5.0-windows\MainWindow.baml +D:\csharp\wpf1\ERD\ERD\obj\Release\net5.0-windows\ERD.g.resources +D:\csharp\wpf1\ERD\ERD\obj\Release\net5.0-windows\ERD.GeneratedMSBuildEditorConfig.editorconfig +D:\csharp\wpf1\ERD\ERD\obj\Release\net5.0-windows\ERD.AssemblyInfoInputs.cache +D:\csharp\wpf1\ERD\ERD\obj\Release\net5.0-windows\ERD.AssemblyInfo.cs +D:\csharp\wpf1\ERD\ERD\obj\Release\net5.0-windows\ERD.csproj.CoreCompileInputs.cache +D:\csharp\wpf1\ERD\ERD\obj\Release\net5.0-windows\ERD.dll +D:\csharp\wpf1\ERD\ERD\obj\Release\net5.0-windows\refint\ERD.dll +D:\csharp\wpf1\ERD\ERD\obj\Release\net5.0-windows\ERD.pdb +D:\csharp\wpf1\ERD\ERD\obj\Release\net5.0-windows\ERD.genruntimeconfig.cache +D:\csharp\wpf1\ERD\ERD\obj\Release\net5.0-windows\ref\ERD.dll diff --git a/ERD/obj/Release/net5.0-windows/ERD.designer.deps.json b/ERD/obj/Release/net5.0-windows/ERD.designer.deps.json new file mode 100644 index 0000000..74b9003 --- /dev/null +++ b/ERD/obj/Release/net5.0-windows/ERD.designer.deps.json @@ -0,0 +1,11 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v5.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v5.0": {} + }, + "libraries": {} +} \ No newline at end of file diff --git a/ERD/obj/Release/net5.0-windows/ERD.designer.runtimeconfig.json b/ERD/obj/Release/net5.0-windows/ERD.designer.runtimeconfig.json new file mode 100644 index 0000000..2e4479b --- /dev/null +++ b/ERD/obj/Release/net5.0-windows/ERD.designer.runtimeconfig.json @@ -0,0 +1,17 @@ +{ + "runtimeOptions": { + "tfm": "net5.0", + "framework": { + "name": "Microsoft.WindowsDesktop.App", + "version": "5.0.0" + }, + "additionalProbingPaths": [ + "C:\\Users\\dhanr\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\dhanr\\.nuget\\packages" + ], + "configProperties": { + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, + "Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true + } + } +} \ No newline at end of file diff --git a/ERD/obj/Release/net5.0-windows/ERD.dll b/ERD/obj/Release/net5.0-windows/ERD.dll new file mode 100644 index 0000000..68508ae Binary files /dev/null and b/ERD/obj/Release/net5.0-windows/ERD.dll differ diff --git a/ERD/obj/Release/net5.0-windows/ERD.g.resources b/ERD/obj/Release/net5.0-windows/ERD.g.resources new file mode 100644 index 0000000..6343cc9 Binary files /dev/null and b/ERD/obj/Release/net5.0-windows/ERD.g.resources differ diff --git a/ERD/obj/Release/net5.0-windows/ERD.genruntimeconfig.cache b/ERD/obj/Release/net5.0-windows/ERD.genruntimeconfig.cache new file mode 100644 index 0000000..1acd70f --- /dev/null +++ b/ERD/obj/Release/net5.0-windows/ERD.genruntimeconfig.cache @@ -0,0 +1 @@ +3a7376d2ec38ba1e641ff45f34a299045d2ac73a diff --git a/ERD/obj/Release/net5.0-windows/ERD.pdb b/ERD/obj/Release/net5.0-windows/ERD.pdb new file mode 100644 index 0000000..88550f1 Binary files /dev/null and b/ERD/obj/Release/net5.0-windows/ERD.pdb differ diff --git a/ERD/obj/Release/net5.0-windows/ERD_MarkupCompile.cache b/ERD/obj/Release/net5.0-windows/ERD_MarkupCompile.cache new file mode 100644 index 0000000..4f6f1b9 --- /dev/null +++ b/ERD/obj/Release/net5.0-windows/ERD_MarkupCompile.cache @@ -0,0 +1,20 @@ +ERD + + +winexe +C# +.cs +D:\csharp\wpf1\ERD\ERD\obj\Release\net5.0-windows\ +ERD +none +false +TRACE;RELEASE;NET;NET5_0;NETCOREAPP +D:\csharp\wpf1\ERD\ERD\App.xaml +3957823930 + +111040202912 +193-1891726104 +Components\ellipse.xaml;Components\EntityCard.xaml;MainWindow.xaml; + +False + diff --git a/ERD/obj/Release/net5.0-windows/ERD_MarkupCompile.i.cache b/ERD/obj/Release/net5.0-windows/ERD_MarkupCompile.i.cache new file mode 100644 index 0000000..c1898d8 --- /dev/null +++ b/ERD/obj/Release/net5.0-windows/ERD_MarkupCompile.i.cache @@ -0,0 +1,20 @@ +ERD +1.0.0.0 + +winexe +C# +.cs +D:\csharp\wpf1\ERD\ERD\obj\Release\net5.0-windows\ +ERD +none +false +TRACE;RELEASE;NET;NET5_0;NETCOREAPP +D:\csharp\wpf1\ERD\ERD\App.xaml +3957823930 + +131303294869 +193-1891726104 +Components\ellipse.xaml;Components\EntityCard.xaml;MainWindow.xaml; + +True + diff --git a/ERD/obj/Release/net5.0-windows/ERD_MarkupCompile.i.lref b/ERD/obj/Release/net5.0-windows/ERD_MarkupCompile.i.lref new file mode 100644 index 0000000..2a19e2f --- /dev/null +++ b/ERD/obj/Release/net5.0-windows/ERD_MarkupCompile.i.lref @@ -0,0 +1,5 @@ +D:\csharp\wpf1\ERD\ERD\obj\Release\net5.0-windows\GeneratedInternalTypeHelper.g.i.cs +FD:\csharp\wpf1\ERD\ERD\App.xaml;; +FD:\csharp\wpf1\ERD\ERD\Components\EntityCard.xaml;; +FD:\csharp\wpf1\ERD\ERD\MainWindow.xaml;; + diff --git a/ERD/obj/Release/net5.0-windows/ERD_MarkupCompile.lref b/ERD/obj/Release/net5.0-windows/ERD_MarkupCompile.lref new file mode 100644 index 0000000..97e3e06 --- /dev/null +++ b/ERD/obj/Release/net5.0-windows/ERD_MarkupCompile.lref @@ -0,0 +1,5 @@ + +FD:\csharp\wpf1\ERD\ERD\App.xaml;; +FD:\csharp\wpf1\ERD\ERD\Components\EntityCard.xaml;; +FD:\csharp\wpf1\ERD\ERD\MainWindow.xaml;; + diff --git a/ERD/obj/Release/net5.0-windows/ERD_plnzmv2x_wpftmp.AssemblyInfo.cs b/ERD/obj/Release/net5.0-windows/ERD_plnzmv2x_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599ef2c --- /dev/null +++ b/ERD/obj/Release/net5.0-windows/ERD_plnzmv2x_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERD")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ERD")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERD")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ERD/obj/Release/net5.0-windows/ERD_plnzmv2x_wpftmp.AssemblyInfoInputs.cache b/ERD/obj/Release/net5.0-windows/ERD_plnzmv2x_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..de0b4c1 --- /dev/null +++ b/ERD/obj/Release/net5.0-windows/ERD_plnzmv2x_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +2b78e250f2d5059346205c27e70ce1db8eecb9e0 diff --git a/ERD/obj/Release/net5.0-windows/ERD_plnzmv2x_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ERD/obj/Release/net5.0-windows/ERD_plnzmv2x_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b0d2215 --- /dev/null +++ b/ERD/obj/Release/net5.0-windows/ERD_plnzmv2x_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ERD_plnzmv2x_wpftmp +build_property.ProjectDir = D:\csharp\wpf1\ERD\ERD\ diff --git a/ERD/obj/Release/net5.0-windows/ERD_plnzmv2x_wpftmp.assets.cache b/ERD/obj/Release/net5.0-windows/ERD_plnzmv2x_wpftmp.assets.cache new file mode 100644 index 0000000..0055c77 Binary files /dev/null and b/ERD/obj/Release/net5.0-windows/ERD_plnzmv2x_wpftmp.assets.cache differ diff --git a/ERD/obj/Release/net5.0-windows/ERD_plnzmv2x_wpftmp.csproj.BuildWithSkipAnalyzers b/ERD/obj/Release/net5.0-windows/ERD_plnzmv2x_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ERD/obj/Release/net5.0-windows/GeneratedInternalTypeHelper.g.cs b/ERD/obj/Release/net5.0-windows/GeneratedInternalTypeHelper.g.cs new file mode 100644 index 0000000..71f29c3 --- /dev/null +++ b/ERD/obj/Release/net5.0-windows/GeneratedInternalTypeHelper.g.cs @@ -0,0 +1,62 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace XamlGeneratedNamespace { + + + /// + /// GeneratedInternalTypeHelper + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.3.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public sealed class GeneratedInternalTypeHelper : System.Windows.Markup.InternalTypeHelper { + + /// + /// CreateInstance + /// + protected override object CreateInstance(System.Type type, System.Globalization.CultureInfo culture) { + return System.Activator.CreateInstance(type, ((System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.NonPublic) + | (System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.CreateInstance)), null, null, culture); + } + + /// + /// GetPropertyValue + /// + protected override object GetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, System.Globalization.CultureInfo culture) { + return propertyInfo.GetValue(target, System.Reflection.BindingFlags.Default, null, null, culture); + } + + /// + /// SetPropertyValue + /// + protected override void SetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, object value, System.Globalization.CultureInfo culture) { + propertyInfo.SetValue(target, value, System.Reflection.BindingFlags.Default, null, null, culture); + } + + /// + /// CreateDelegate + /// + protected override System.Delegate CreateDelegate(System.Type delegateType, object target, string handler) { + return ((System.Delegate)(target.GetType().InvokeMember("_CreateDelegate", (System.Reflection.BindingFlags.InvokeMethod + | (System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance)), null, target, new object[] { + delegateType, + handler}, null))); + } + + /// + /// AddEventHandler + /// + protected override void AddEventHandler(System.Reflection.EventInfo eventInfo, object target, System.Delegate handler) { + eventInfo.AddEventHandler(target, handler); + } + } +} + diff --git a/ERD/obj/Release/net5.0-windows/GeneratedInternalTypeHelper.g.i.cs b/ERD/obj/Release/net5.0-windows/GeneratedInternalTypeHelper.g.i.cs new file mode 100644 index 0000000..71f29c3 --- /dev/null +++ b/ERD/obj/Release/net5.0-windows/GeneratedInternalTypeHelper.g.i.cs @@ -0,0 +1,62 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace XamlGeneratedNamespace { + + + /// + /// GeneratedInternalTypeHelper + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.3.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public sealed class GeneratedInternalTypeHelper : System.Windows.Markup.InternalTypeHelper { + + /// + /// CreateInstance + /// + protected override object CreateInstance(System.Type type, System.Globalization.CultureInfo culture) { + return System.Activator.CreateInstance(type, ((System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.NonPublic) + | (System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.CreateInstance)), null, null, culture); + } + + /// + /// GetPropertyValue + /// + protected override object GetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, System.Globalization.CultureInfo culture) { + return propertyInfo.GetValue(target, System.Reflection.BindingFlags.Default, null, null, culture); + } + + /// + /// SetPropertyValue + /// + protected override void SetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, object value, System.Globalization.CultureInfo culture) { + propertyInfo.SetValue(target, value, System.Reflection.BindingFlags.Default, null, null, culture); + } + + /// + /// CreateDelegate + /// + protected override System.Delegate CreateDelegate(System.Type delegateType, object target, string handler) { + return ((System.Delegate)(target.GetType().InvokeMember("_CreateDelegate", (System.Reflection.BindingFlags.InvokeMethod + | (System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance)), null, target, new object[] { + delegateType, + handler}, null))); + } + + /// + /// AddEventHandler + /// + protected override void AddEventHandler(System.Reflection.EventInfo eventInfo, object target, System.Delegate handler) { + eventInfo.AddEventHandler(target, handler); + } + } +} + diff --git a/ERD/obj/Release/net5.0-windows/MainWindow.baml b/ERD/obj/Release/net5.0-windows/MainWindow.baml new file mode 100644 index 0000000..a984014 Binary files /dev/null and b/ERD/obj/Release/net5.0-windows/MainWindow.baml differ diff --git a/ERD/obj/Release/net5.0-windows/MainWindow.g.cs b/ERD/obj/Release/net5.0-windows/MainWindow.g.cs new file mode 100644 index 0000000..ab593e4 --- /dev/null +++ b/ERD/obj/Release/net5.0-windows/MainWindow.g.cs @@ -0,0 +1,141 @@ +#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "215BB25589C4419714631646FE824C093EDEB32C" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using ERD; +using ERD.Components; +using ERD.Diagramming_Logic.Elements; +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 ERD { + + + /// + /// MainWindow + /// + public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { + + + #line 16 "..\..\..\MainWindow.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.Canvas DrawingCanvas; + + #line default + #line hidden + + + #line 19 "..\..\..\MainWindow.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.ContentControl Entity; + + #line default + #line hidden + + private bool _contentLoaded; + + /// + /// InitializeComponent + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.3.0")] + public void InitializeComponent() { + if (_contentLoaded) { + return; + } + _contentLoaded = true; + System.Uri resourceLocater = new System.Uri("/ERD;component/mainwindow.xaml", System.UriKind.Relative); + + #line 1 "..\..\..\MainWindow.xaml" + System.Windows.Application.LoadComponent(this, resourceLocater); + + #line default + #line hidden + } + + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.3.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 11 "..\..\..\MainWindow.xaml" + ((ERD.MainWindow)(target)).Loaded += new System.Windows.RoutedEventHandler(this.MainWindow_OnLoaded); + + #line default + #line hidden + return; + case 2: + this.DrawingCanvas = ((System.Windows.Controls.Canvas)(target)); + + #line 16 "..\..\..\MainWindow.xaml" + this.DrawingCanvas.KeyUp += new System.Windows.Input.KeyEventHandler(this.KeyUnpressed); + + #line default + #line hidden + + #line 16 "..\..\..\MainWindow.xaml" + this.DrawingCanvas.KeyDown += new System.Windows.Input.KeyEventHandler(this.KeyPressed); + + #line default + #line hidden + + #line 16 "..\..\..\MainWindow.xaml" + this.DrawingCanvas.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.DrawingCanvas_OnMouseDown); + + #line default + #line hidden + + #line 16 "..\..\..\MainWindow.xaml" + this.DrawingCanvas.PreviewMouseRightButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.DrawingCanvas_PreviewMouseRightButtonUp); + + #line default + #line hidden + + #line 16 "..\..\..\MainWindow.xaml" + this.DrawingCanvas.PreviewMouseMove += new System.Windows.Input.MouseEventHandler(this.DrawingCanvas_OnPreviewMouseMove); + + #line default + #line hidden + return; + case 3: + this.Entity = ((System.Windows.Controls.ContentControl)(target)); + return; + } + this._contentLoaded = true; + } + } +} + diff --git a/ERD/obj/Release/net5.0-windows/MainWindow.g.i.cs b/ERD/obj/Release/net5.0-windows/MainWindow.g.i.cs new file mode 100644 index 0000000..8d287bf --- /dev/null +++ b/ERD/obj/Release/net5.0-windows/MainWindow.g.i.cs @@ -0,0 +1,141 @@ +#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "215BB25589C4419714631646FE824C093EDEB32C" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using ERD; +using ERD.Components; +using ERD.Diagramming_Logic.Elements; +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 ERD { + + + /// + /// MainWindow + /// + public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { + + + #line 16 "..\..\..\MainWindow.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.Canvas DrawingCanvas; + + #line default + #line hidden + + + #line 19 "..\..\..\MainWindow.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.ContentControl Entity; + + #line default + #line hidden + + private bool _contentLoaded; + + /// + /// InitializeComponent + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.3.0")] + public void InitializeComponent() { + if (_contentLoaded) { + return; + } + _contentLoaded = true; + System.Uri resourceLocater = new System.Uri("/ERD;V1.0.0.0;component/mainwindow.xaml", System.UriKind.Relative); + + #line 1 "..\..\..\MainWindow.xaml" + System.Windows.Application.LoadComponent(this, resourceLocater); + + #line default + #line hidden + } + + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.3.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 11 "..\..\..\MainWindow.xaml" + ((ERD.MainWindow)(target)).Loaded += new System.Windows.RoutedEventHandler(this.MainWindow_OnLoaded); + + #line default + #line hidden + return; + case 2: + this.DrawingCanvas = ((System.Windows.Controls.Canvas)(target)); + + #line 16 "..\..\..\MainWindow.xaml" + this.DrawingCanvas.KeyUp += new System.Windows.Input.KeyEventHandler(this.KeyUnpressed); + + #line default + #line hidden + + #line 16 "..\..\..\MainWindow.xaml" + this.DrawingCanvas.KeyDown += new System.Windows.Input.KeyEventHandler(this.KeyPressed); + + #line default + #line hidden + + #line 16 "..\..\..\MainWindow.xaml" + this.DrawingCanvas.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.DrawingCanvas_OnMouseDown); + + #line default + #line hidden + + #line 16 "..\..\..\MainWindow.xaml" + this.DrawingCanvas.PreviewMouseRightButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.DrawingCanvas_PreviewMouseRightButtonUp); + + #line default + #line hidden + + #line 16 "..\..\..\MainWindow.xaml" + this.DrawingCanvas.PreviewMouseMove += new System.Windows.Input.MouseEventHandler(this.DrawingCanvas_OnPreviewMouseMove); + + #line default + #line hidden + return; + case 3: + this.Entity = ((System.Windows.Controls.ContentControl)(target)); + return; + } + this._contentLoaded = true; + } + } +} + diff --git a/ERD/obj/Release/net5.0-windows/apphost.exe b/ERD/obj/Release/net5.0-windows/apphost.exe new file mode 100644 index 0000000..8f6e966 Binary files /dev/null and b/ERD/obj/Release/net5.0-windows/apphost.exe differ diff --git a/ERD/obj/Release/net5.0-windows/ref/ERD.dll b/ERD/obj/Release/net5.0-windows/ref/ERD.dll new file mode 100644 index 0000000..4dcfcff Binary files /dev/null and b/ERD/obj/Release/net5.0-windows/ref/ERD.dll differ diff --git a/ERD/obj/Release/net5.0-windows/refint/ERD.dll b/ERD/obj/Release/net5.0-windows/refint/ERD.dll new file mode 100644 index 0000000..4dcfcff Binary files /dev/null and b/ERD/obj/Release/net5.0-windows/refint/ERD.dll differ diff --git a/ERD/obj/project.assets.json b/ERD/obj/project.assets.json new file mode 100644 index 0000000..14b43ac --- /dev/null +++ b/ERD/obj/project.assets.json @@ -0,0 +1,70 @@ +{ + "version": 3, + "targets": { + "net5.0-windows7.0": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + "net5.0-windows7.0": [] + }, + "packageFolders": { + "C:\\Users\\dhanr\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\csharp\\wpf1\\ERD\\ERD\\ERD.csproj", + "projectName": "ERD", + "projectPath": "D:\\csharp\\wpf1\\ERD\\ERD\\ERD.csproj", + "packagesPath": "C:\\Users\\dhanr\\.nuget\\packages\\", + "outputPath": "D:\\csharp\\wpf1\\ERD\\ERD\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\dhanr\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0-windows7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net5.0-windows7.0": { + "targetAlias": "net5.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0-windows7.0": { + "targetAlias": "net5.0-windows", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WPF": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.201\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/ERD/obj/project.nuget.cache b/ERD/obj/project.nuget.cache new file mode 100644 index 0000000..468ad70 --- /dev/null +++ b/ERD/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "r8vUIoea8XVjVq5Nx6KJWMEksGc1xI+5YmkfGORQqjVarFFw50QwWOkOUQVyVZXNfyJVyFmJvEYkiZx00ojF7A==", + "success": true, + "projectFilePath": "D:\\csharp\\wpf1\\ERD\\ERD\\ERD.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file