From e68a7ce8a9211987bf2b6bf5079cc929f6a35e88 Mon Sep 17 00:00:00 2001 From: Lorenz Stechauner Date: Sun, 16 Apr 2023 19:32:59 +0200 Subject: [PATCH] Remove byte order mark in all files --- Elwig.sln | 2 +- Elwig/App.xaml | 2 +- Elwig/App.xaml.cs | 2 +- Elwig/Documents/BusinessDocument.cshtml | 2 +- Elwig/Documents/BusinessDocument.cshtml.cs | 2 +- Elwig/Documents/BusinessLetter.cshtml | 2 +- Elwig/Documents/BusinessLetter.cshtml.cs | 2 +- Elwig/Documents/Document.cshtml | 2 +- Elwig/Documents/Document.cshtml.cs | 2 +- Elwig/Documents/Html.cs | 2 +- Elwig/Documents/Pdf.cs | 2 +- Elwig/Elwig.csproj | 2 +- Elwig/Helpers/AppDbContext.cs | 2 +- Elwig/Helpers/Config.cs | 2 +- Elwig/Helpers/TempFile.cs | 2 +- Elwig/Helpers/Utils.cs | 2 +- Elwig/Helpers/Validator.cs | 2 +- Elwig/Models/AT_Gem.cs | 2 +- Elwig/Models/AT_Kg.cs | 2 +- Elwig/Models/AT_Ort.cs | 2 +- Elwig/Models/AT_Plz.cs | 2 +- Elwig/Models/AT_PlzDest.cs | 2 +- Elwig/Models/AreaCom.cs | 2 +- Elwig/Models/AreaComAttr.cs | 2 +- Elwig/Models/AreaComParcel.cs | 2 +- Elwig/Models/BillingAddr.cs | 2 +- Elwig/Models/Branch.cs | 2 +- Elwig/Models/Contract.cs | 2 +- Elwig/Models/Country.cs | 2 +- Elwig/Models/Currency.cs | 2 +- Elwig/Models/Member.cs | 2 +- Elwig/Models/Modifier.cs | 2 +- Elwig/Models/PostalDest.cs | 2 +- Elwig/Models/Season.cs | 2 +- Elwig/Models/WbKg.cs | 2 +- Elwig/Models/WbRd.cs | 2 +- Elwig/Models/WineAttr.cs | 2 +- Elwig/Models/WineCult.cs | 2 +- Elwig/Models/WineQual.cs | 2 +- Elwig/Models/WineVar.cs | 2 +- Elwig/Properties/PublishProfiles/FolderProfile.pubxml | 2 +- Elwig/Windows/AdministrationWindow.cs | 2 +- Elwig/Windows/AreaComAdminWindow.xaml | 2 +- Elwig/Windows/AreaComAdminWindow.xaml.cs | 2 +- Elwig/Windows/ContextWindow.cs | 2 +- Elwig/Windows/DeliveryReceptionWindow.xaml | 2 +- Elwig/Windows/DeliveryReceptionWindow.xaml.cs | 2 +- Elwig/Windows/DocumentViewerWindow.xaml | 2 +- Elwig/Windows/DocumentViewerWindow.xaml.cs | 2 +- Elwig/Windows/MainWindow.xaml | 2 +- Elwig/Windows/MainWindow.xaml.cs | 2 +- Elwig/Windows/MemberAdminWindow.xaml | 2 +- Elwig/Windows/MemberAdminWindow.xaml.cs | 2 +- Elwig/Windows/MemberListWindow.xaml | 2 +- Elwig/Windows/MemberListWindow.xaml.cs | 2 +- 55 files changed, 55 insertions(+), 55 deletions(-) diff --git a/Elwig.sln b/Elwig.sln index 52180cf..9cdfaf0 100644 --- a/Elwig.sln +++ b/Elwig.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.3.32929.385 diff --git a/Elwig/App.xaml b/Elwig/App.xaml index 0cbbe6f..d8b23d3 100644 --- a/Elwig/App.xaml +++ b/Elwig/App.xaml @@ -1,4 +1,4 @@ - @model Elwig.Documents.BusinessDocument @{ Layout = "Document"; } diff --git a/Elwig/Documents/BusinessDocument.cshtml.cs b/Elwig/Documents/BusinessDocument.cshtml.cs index ee9036d..b6e9505 100644 --- a/Elwig/Documents/BusinessDocument.cshtml.cs +++ b/Elwig/Documents/BusinessDocument.cshtml.cs @@ -1,4 +1,4 @@ -using Elwig.Models; +using Elwig.Models; namespace Elwig.Documents { public abstract class BusinessDocument : Document { diff --git a/Elwig/Documents/BusinessLetter.cshtml b/Elwig/Documents/BusinessLetter.cshtml index c336d77..cb9d624 100644 --- a/Elwig/Documents/BusinessLetter.cshtml +++ b/Elwig/Documents/BusinessLetter.cshtml @@ -1,4 +1,4 @@ -@using RazorLight +@using RazorLight @inherits TemplatePage @model Elwig.Documents.BusinessLetter @{ Layout = "BusinessDocument"; } diff --git a/Elwig/Documents/BusinessLetter.cshtml.cs b/Elwig/Documents/BusinessLetter.cshtml.cs index 113f1b5..8b44a00 100644 --- a/Elwig/Documents/BusinessLetter.cshtml.cs +++ b/Elwig/Documents/BusinessLetter.cshtml.cs @@ -1,4 +1,4 @@ -using Elwig.Models; +using Elwig.Models; namespace Elwig.Documents { public class BusinessLetter : BusinessDocument { diff --git a/Elwig/Documents/Document.cshtml b/Elwig/Documents/Document.cshtml index dafb188..4de9c25 100644 --- a/Elwig/Documents/Document.cshtml +++ b/Elwig/Documents/Document.cshtml @@ -1,4 +1,4 @@ -@using RazorLight +@using RazorLight @inherits TemplatePage @model Elwig.Documents.Document diff --git a/Elwig/Documents/Document.cshtml.cs b/Elwig/Documents/Document.cshtml.cs index 84602e1..9821db5 100644 --- a/Elwig/Documents/Document.cshtml.cs +++ b/Elwig/Documents/Document.cshtml.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Threading.Tasks; using System.IO; using Elwig.Helpers; diff --git a/Elwig/Documents/Html.cs b/Elwig/Documents/Html.cs index 4292cd8..794433f 100644 --- a/Elwig/Documents/Html.cs +++ b/Elwig/Documents/Html.cs @@ -1,4 +1,4 @@ -using RazorLight; +using RazorLight; using System; using System.Threading.Tasks; diff --git a/Elwig/Documents/Pdf.cs b/Elwig/Documents/Pdf.cs index 16b8bb3..8fda954 100644 --- a/Elwig/Documents/Pdf.cs +++ b/Elwig/Documents/Pdf.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Threading.Tasks; using System.Windows; using PdfSharp.Pdf.IO; diff --git a/Elwig/Elwig.csproj b/Elwig/Elwig.csproj index a7b50a1..9c40515 100644 --- a/Elwig/Elwig.csproj +++ b/Elwig/Elwig.csproj @@ -1,4 +1,4 @@ - + WinExe diff --git a/Elwig/Helpers/AppDbContext.cs b/Elwig/Helpers/AppDbContext.cs index f587c21..bb8f272 100644 --- a/Elwig/Helpers/AppDbContext.cs +++ b/Elwig/Helpers/AppDbContext.cs @@ -1,4 +1,4 @@ -using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore; using Elwig.Models; using System.Linq; using System.Threading.Tasks; diff --git a/Elwig/Helpers/Config.cs b/Elwig/Helpers/Config.cs index 8fc78aa..3acf67d 100644 --- a/Elwig/Helpers/Config.cs +++ b/Elwig/Helpers/Config.cs @@ -1,4 +1,4 @@ -using System.IO; +using System.IO; using System.Text; using IniParser; using IniParser.Model; diff --git a/Elwig/Helpers/TempFile.cs b/Elwig/Helpers/TempFile.cs index db878c4..4874c98 100644 --- a/Elwig/Helpers/TempFile.cs +++ b/Elwig/Helpers/TempFile.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.IO; namespace Elwig.Helpers { diff --git a/Elwig/Helpers/Utils.cs b/Elwig/Helpers/Utils.cs index b178a01..f663ae9 100644 --- a/Elwig/Helpers/Utils.cs +++ b/Elwig/Helpers/Utils.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; diff --git a/Elwig/Helpers/Validator.cs b/Elwig/Helpers/Validator.cs index 01e252d..c1e95b5 100644 --- a/Elwig/Helpers/Validator.cs +++ b/Elwig/Helpers/Validator.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Linq; using System.Windows.Controls; diff --git a/Elwig/Models/AT_Gem.cs b/Elwig/Models/AT_Gem.cs index e7ad8ef..6a08b96 100644 --- a/Elwig/Models/AT_Gem.cs +++ b/Elwig/Models/AT_Gem.cs @@ -1,4 +1,4 @@ -using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations.Schema; namespace Elwig.Models { diff --git a/Elwig/Models/AT_Kg.cs b/Elwig/Models/AT_Kg.cs index 60bd367..d769701 100644 --- a/Elwig/Models/AT_Kg.cs +++ b/Elwig/Models/AT_Kg.cs @@ -1,4 +1,4 @@ -using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations.Schema; namespace Elwig.Models { diff --git a/Elwig/Models/AT_Ort.cs b/Elwig/Models/AT_Ort.cs index 4a88932..69cdc85 100644 --- a/Elwig/Models/AT_Ort.cs +++ b/Elwig/Models/AT_Ort.cs @@ -1,4 +1,4 @@ -using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations.Schema; namespace Elwig.Models { diff --git a/Elwig/Models/AT_Plz.cs b/Elwig/Models/AT_Plz.cs index 409f981..d04c465 100644 --- a/Elwig/Models/AT_Plz.cs +++ b/Elwig/Models/AT_Plz.cs @@ -1,4 +1,4 @@ -using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; diff --git a/Elwig/Models/AT_PlzDest.cs b/Elwig/Models/AT_PlzDest.cs index cff48dd..1ef4fd8 100644 --- a/Elwig/Models/AT_PlzDest.cs +++ b/Elwig/Models/AT_PlzDest.cs @@ -1,4 +1,4 @@ -using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations.Schema; namespace Elwig.Models { diff --git a/Elwig/Models/AreaCom.cs b/Elwig/Models/AreaCom.cs index 14a7ce6..8a9faa7 100644 --- a/Elwig/Models/AreaCom.cs +++ b/Elwig/Models/AreaCom.cs @@ -1,4 +1,4 @@ -using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; diff --git a/Elwig/Models/AreaComAttr.cs b/Elwig/Models/AreaComAttr.cs index c8e58e9..c3077a3 100644 --- a/Elwig/Models/AreaComAttr.cs +++ b/Elwig/Models/AreaComAttr.cs @@ -1,4 +1,4 @@ -using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations.Schema; namespace Elwig.Models { diff --git a/Elwig/Models/AreaComParcel.cs b/Elwig/Models/AreaComParcel.cs index e367ff5..841ef9b 100644 --- a/Elwig/Models/AreaComParcel.cs +++ b/Elwig/Models/AreaComParcel.cs @@ -1,4 +1,4 @@ -using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations.Schema; namespace Elwig.Models { diff --git a/Elwig/Models/BillingAddr.cs b/Elwig/Models/BillingAddr.cs index e025884..d092133 100644 --- a/Elwig/Models/BillingAddr.cs +++ b/Elwig/Models/BillingAddr.cs @@ -1,4 +1,4 @@ -using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations.Schema; namespace Elwig.Models { diff --git a/Elwig/Models/Branch.cs b/Elwig/Models/Branch.cs index e0762b0..471c89a 100644 --- a/Elwig/Models/Branch.cs +++ b/Elwig/Models/Branch.cs @@ -1,4 +1,4 @@ -using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; diff --git a/Elwig/Models/Contract.cs b/Elwig/Models/Contract.cs index 3b4dfc3..92bff94 100644 --- a/Elwig/Models/Contract.cs +++ b/Elwig/Models/Contract.cs @@ -1,4 +1,4 @@ -using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore; using System; using System.ComponentModel.DataAnnotations.Schema; diff --git a/Elwig/Models/Country.cs b/Elwig/Models/Country.cs index 9d289a6..b061f17 100644 --- a/Elwig/Models/Country.cs +++ b/Elwig/Models/Country.cs @@ -1,4 +1,4 @@ -using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations.Schema; namespace Elwig.Models { diff --git a/Elwig/Models/Currency.cs b/Elwig/Models/Currency.cs index 272a06b..c0981d1 100644 --- a/Elwig/Models/Currency.cs +++ b/Elwig/Models/Currency.cs @@ -1,4 +1,4 @@ -using Elwig.Helpers; +using Elwig.Helpers; using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations.Schema; diff --git a/Elwig/Models/Member.cs b/Elwig/Models/Member.cs index 2fa6654..06501c8 100644 --- a/Elwig/Models/Member.cs +++ b/Elwig/Models/Member.cs @@ -1,4 +1,4 @@ -using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; diff --git a/Elwig/Models/Modifier.cs b/Elwig/Models/Modifier.cs index 76e6587..20365df 100644 --- a/Elwig/Models/Modifier.cs +++ b/Elwig/Models/Modifier.cs @@ -1,4 +1,4 @@ -using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations.Schema; namespace Elwig.Models { diff --git a/Elwig/Models/PostalDest.cs b/Elwig/Models/PostalDest.cs index 050769d..b27b71e 100644 --- a/Elwig/Models/PostalDest.cs +++ b/Elwig/Models/PostalDest.cs @@ -1,4 +1,4 @@ -using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations.Schema; namespace Elwig.Models { diff --git a/Elwig/Models/Season.cs b/Elwig/Models/Season.cs index aa38db4..23a5aec 100644 --- a/Elwig/Models/Season.cs +++ b/Elwig/Models/Season.cs @@ -1,4 +1,4 @@ -using Elwig.Helpers; +using Elwig.Helpers; using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; diff --git a/Elwig/Models/WbKg.cs b/Elwig/Models/WbKg.cs index c7a0855..6bf9653 100644 --- a/Elwig/Models/WbKg.cs +++ b/Elwig/Models/WbKg.cs @@ -1,4 +1,4 @@ -using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations.Schema; namespace Elwig.Models { diff --git a/Elwig/Models/WbRd.cs b/Elwig/Models/WbRd.cs index 620a6cd..bd6e504 100644 --- a/Elwig/Models/WbRd.cs +++ b/Elwig/Models/WbRd.cs @@ -1,4 +1,4 @@ -using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations.Schema; namespace Elwig.Models { diff --git a/Elwig/Models/WineAttr.cs b/Elwig/Models/WineAttr.cs index cd3a6b7..0253633 100644 --- a/Elwig/Models/WineAttr.cs +++ b/Elwig/Models/WineAttr.cs @@ -1,4 +1,4 @@ -using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations.Schema; namespace Elwig.Models { diff --git a/Elwig/Models/WineCult.cs b/Elwig/Models/WineCult.cs index 0cfd2fb..51fd910 100644 --- a/Elwig/Models/WineCult.cs +++ b/Elwig/Models/WineCult.cs @@ -1,4 +1,4 @@ -using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations.Schema; namespace Elwig.Models { diff --git a/Elwig/Models/WineQual.cs b/Elwig/Models/WineQual.cs index 2b6680e..b2caf29 100644 --- a/Elwig/Models/WineQual.cs +++ b/Elwig/Models/WineQual.cs @@ -1,4 +1,4 @@ -using Elwig.Helpers; +using Elwig.Helpers; using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations.Schema; diff --git a/Elwig/Models/WineVar.cs b/Elwig/Models/WineVar.cs index a766913..0646347 100644 --- a/Elwig/Models/WineVar.cs +++ b/Elwig/Models/WineVar.cs @@ -1,4 +1,4 @@ -using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations.Schema; namespace Elwig.Models { diff --git a/Elwig/Properties/PublishProfiles/FolderProfile.pubxml b/Elwig/Properties/PublishProfiles/FolderProfile.pubxml index 474c59b..410538f 100644 --- a/Elwig/Properties/PublishProfiles/FolderProfile.pubxml +++ b/Elwig/Properties/PublishProfiles/FolderProfile.pubxml @@ -1,4 +1,4 @@ - + diff --git a/Elwig/Windows/AdministrationWindow.cs b/Elwig/Windows/AdministrationWindow.cs index 4cc58fb..af2f6ad 100644 --- a/Elwig/Windows/AdministrationWindow.cs +++ b/Elwig/Windows/AdministrationWindow.cs @@ -1,4 +1,4 @@ -using Elwig.Helpers; +using Elwig.Helpers; using Elwig.Models; using System; using System.Collections.Generic; diff --git a/Elwig/Windows/AreaComAdminWindow.xaml b/Elwig/Windows/AreaComAdminWindow.xaml index 166598b..dadcb55 100644 --- a/Elwig/Windows/AreaComAdminWindow.xaml +++ b/Elwig/Windows/AreaComAdminWindow.xaml @@ -1,4 +1,4 @@ -