浏览代码

Update proj & libs

- .NET 4.7.1 -> .NET 4.8
- Update packages
- Use new csproj format
- Update .gitignore
- Update package details / assembly info
Daniel Chalmers 4 年之前
父节点
当前提交
2c737d33f8

+ 123 - 22
.gitignore

@@ -1,7 +1,10 @@
 ## Ignore Visual Studio temporary files, build results, and
 ## files generated by popular Visual Studio add-ons.
+##
+## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
 
 # User-specific files
+*.rsuser
 *.suo
 *.user
 *.userosscache
@@ -10,6 +13,9 @@
 # User-specific files (MonoDevelop/Xamarin Studio)
 *.userprefs
 
+# Mono auto generated files
+mono_crash.*
+
 # Build results
 [Dd]ebug/
 [Dd]ebugPublic/
@@ -17,42 +23,62 @@
 [Rr]eleases/
 x64/
 x86/
+[Ww][Ii][Nn]32/
+[Aa][Rr][Mm]/
+[Aa][Rr][Mm]64/
 bld/
 [Bb]in/
 [Oo]bj/
 [Ll]og/
+[Ll]ogs/
 
-# Visual Studio 2015 cache/options directory
+# Visual Studio 2015/2017 cache/options directory
 .vs/
 # Uncomment if you have tasks that create the project's static files in wwwroot
 #wwwroot/
 
+# Visual Studio 2017 auto generated files
+Generated\ Files/
+
 # MSTest test Results
 [Tt]est[Rr]esult*/
 [Bb]uild[Ll]og.*
 
-# NUNIT
+# NUnit
 *.VisualState.xml
 TestResult.xml
+nunit-*.xml
 
 # Build Results of an ATL Project
 [Dd]ebugPS/
 [Rr]eleasePS/
 dlldata.c
 
-# DNX
+# Benchmark Results
+BenchmarkDotNet.Artifacts/
+
+# .NET Core
 project.lock.json
 project.fragment.lock.json
 artifacts/
 
+# ASP.NET Scaffolding
+ScaffoldingReadMe.txt
+
+# StyleCop
+StyleCopReport.xml
+
+# Files built by Visual Studio
 *_i.c
 *_p.c
-*_i.h
+*_h.h
 *.ilk
 *.meta
 *.obj
+*.iobj
 *.pch
 *.pdb
+*.ipdb
 *.pgc
 *.pgd
 *.rsp
@@ -62,6 +88,7 @@ artifacts/
 *.tlh
 *.tmp
 *.tmp_proj
+*_wpftmp.csproj
 *.log
 *.vspscc
 *.vssscc
@@ -90,6 +117,9 @@ ipch/
 *.vspx
 *.sap
 
+# Visual Studio Trace Files
+*.e2e
+
 # TFS 2012 Local Workspace
 $tf/
 
@@ -101,15 +131,25 @@ _ReSharper*/
 *.[Rr]e[Ss]harper
 *.DotSettings.user
 
-# JustCode is a .NET coding add-in
-.JustCode
-
 # TeamCity is a build add-in
 _TeamCity*
 
 # DotCover is a Code Coverage Tool
 *.dotCover
 
+# AxoCover is a Code Coverage Tool
+.axoCover/*
+!.axoCover/settings.json
+
+# Coverlet is a free, cross platform Code Coverage Tool
+coverage*.json
+coverage*.xml
+coverage*.info
+
+# Visual Studio code coverage results
+*.coverage
+*.coveragexml
+
 # NCrunch
 _NCrunch_*
 .*crunch*.local.xml
@@ -141,9 +181,9 @@ publish/
 # Publish Web Output
 *.[Pp]ublish.xml
 *.azurePubxml
-# TODO: Comment the next line if you want to checkin your web deploy settings
+# Note: Comment the next line if you want to checkin your web deploy settings,
 # but database connection strings (with potential passwords) will be unencrypted
-#*.pubxml
+*.pubxml
 *.publishproj
 
 # Microsoft Azure Web App publish settings. Comment the next line if you want to
@@ -153,13 +193,15 @@ PublishScripts/
 
 # NuGet Packages
 *.nupkg
+# NuGet Symbol Packages
+*.snupkg
 # The packages folder can be ignored because of Package Restore
-**/packages/*
+**/[Pp]ackages/*
 # except build/, which is used as an MSBuild target.
-!**/packages/build/
+!**/[Pp]ackages/build/
 # Uncomment if necessary however generally it will be regenerated when needed
-#!**/packages/repositories.config
-# NuGet v3's project.json files produces more ignoreable files
+#!**/[Pp]ackages/repositories.config
+# NuGet v3's project.json files produces more ignorable files
 *.nuget.props
 *.nuget.targets
 
@@ -176,12 +218,15 @@ AppPackages/
 BundleArtifacts/
 Package.StoreAssociation.xml
 _pkginfo.txt
+*.appx
+*.appxbundle
+*.appxupload
 
 # Visual Studio cache files
 # files ending in .cache can be ignored
 *.[Cc]ache
 # but keep track of directories ending in .cache
-!*.[Cc]ache/
+!?*.[Cc]ache/
 
 # Others
 ClientBin/
@@ -192,9 +237,12 @@ ClientBin/
 *.jfm
 *.pfx
 *.publishsettings
-node_modules/
 orleans.codegen.cs
 
+# Including strong name files can present a security risk
+# (https://github.com/github/gitignore/pull/2483#issue-259490424)
+#*.snk
+
 # Since there are multiple workflows, uncomment next line to ignore bower_components
 # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
 #bower_components/
@@ -209,15 +257,22 @@ _UpgradeReport_Files/
 Backup*/
 UpgradeLog*.XML
 UpgradeLog*.htm
+ServiceFabricBackup/
+*.rptproj.bak
 
 # SQL Server files
 *.mdf
 *.ldf
+*.ndf
 
 # Business Intelligence projects
 *.rdl.data
 *.bim.layout
 *.bim_*.settings
+*.rptproj.rsuser
+*- [Bb]ackup.rdl
+*- [Bb]ackup ([0-9]).rdl
+*- [Bb]ackup ([0-9][0-9]).rdl
 
 # Microsoft Fakes
 FakesAssemblies/
@@ -227,6 +282,7 @@ FakesAssemblies/
 
 # Node.js Tools for Visual Studio
 .ntvs_analysis.dat
+node_modules/
 
 # Visual Studio 6 build log
 *.plg
@@ -234,6 +290,9 @@ FakesAssemblies/
 # Visual Studio 6 workspace options file
 *.opt
 
+# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
+*.vbw
+
 # Visual Studio LightSwitch build output
 **/*.HTMLClient/GeneratedArtifacts
 **/*.DesktopClient/GeneratedArtifacts
@@ -249,13 +308,55 @@ paket-files/
 # FAKE - F# Make
 .fake/
 
-# JetBrains Rider
-.idea/
-*.sln.iml
-
-# CodeRush
-.cr/
+# CodeRush personal settings
+.cr/personal
 
 # Python Tools for Visual Studio (PTVS)
 __pycache__/
-*.pyc
+*.pyc
+
+# Cake - Uncomment if you are using it
+# tools/**
+# !tools/packages.config
+
+# Tabs Studio
+*.tss
+
+# Telerik's JustMock configuration file
+*.jmconfig
+
+# BizTalk build output
+*.btp.cs
+*.btm.cs
+*.odx.cs
+*.xsd.cs
+
+# OpenCover UI analysis results
+OpenCover/
+
+# Azure Stream Analytics local run output
+ASALocalRun/
+
+# MSBuild Binary and Structured Log
+*.binlog
+
+# NVidia Nsight GPU debugger configuration file
+*.nvuser
+
+# MFractors (Xamarin productivity tool) working folder
+.mfractor/
+
+# Local History for Visual Studio
+.localhistory/
+
+# BeatPulse healthcheck temp database
+healthchecksdb
+
+# Backup folder for Package Reference Convert tool in Visual Studio 2017
+MigrationBackup/
+
+# Ionide (cross platform F# VS Code tools) working folder
+.ionide/
+
+# Fody - auto-generated XML schema
+FodyWeavers.xsd

+ 7 - 8
DesktopClock.sln

@@ -1,9 +1,8 @@
-
 Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio 15
-VisualStudioVersion = 15.0.27130.2020
+# Visual Studio Version 16
+VisualStudioVersion = 16.0.30907.101
 MinimumVisualStudioVersion = 10.0.40219.1
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DesktopClock", "DesktopClock\DesktopClock.csproj", "{E3E9D465-6F11-4B31-A1AA-CE85BCC8175E}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DesktopClock", "DesktopClock\DesktopClock.csproj", "{6BD5BA59-2419-4A0E-89F8-C6F8A4EA08F7}"
 EndProject
 Global
 	GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -11,10 +10,10 @@ Global
 		Release|Any CPU = Release|Any CPU
 	EndGlobalSection
 	GlobalSection(ProjectConfigurationPlatforms) = postSolution
-		{E3E9D465-6F11-4B31-A1AA-CE85BCC8175E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
-		{E3E9D465-6F11-4B31-A1AA-CE85BCC8175E}.Debug|Any CPU.Build.0 = Debug|Any CPU
-		{E3E9D465-6F11-4B31-A1AA-CE85BCC8175E}.Release|Any CPU.ActiveCfg = Release|Any CPU
-		{E3E9D465-6F11-4B31-A1AA-CE85BCC8175E}.Release|Any CPU.Build.0 = Release|Any CPU
+		{6BD5BA59-2419-4A0E-89F8-C6F8A4EA08F7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+		{6BD5BA59-2419-4A0E-89F8-C6F8A4EA08F7}.Debug|Any CPU.Build.0 = Debug|Any CPU
+		{6BD5BA59-2419-4A0E-89F8-C6F8A4EA08F7}.Release|Any CPU.ActiveCfg = Release|Any CPU
+		{6BD5BA59-2419-4A0E-89F8-C6F8A4EA08F7}.Release|Any CPU.Build.0 = Release|Any CPU
 	EndGlobalSection
 	GlobalSection(SolutionProperties) = preSolution
 		HideSolutionNode = FALSE

+ 0 - 48
DesktopClock/App.config

@@ -1,48 +0,0 @@
-<?xml version="1.0" encoding="utf-8" ?>
-<configuration>
-  <configSections>
-    <sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
-      <section name="DesktopClock.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
-    </sectionGroup>
-  </configSections>
-  <startup>
-    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.1" />
-  </startup>
-  <userSettings>
-    <DesktopClock.Properties.Settings>
-      <setting name="ShouldUpgrade" serializeAs="String">
-        <value>True</value>
-      </setting>
-      <setting name="Placement" serializeAs="Xml">
-        <value />
-      </setting>
-      <setting name="Topmost" serializeAs="String">
-        <value>True</value>
-      </setting>
-      <setting name="ShowInTaskbar" serializeAs="String">
-        <value>True</value>
-      </setting>
-      <setting name="Height" serializeAs="String">
-        <value>40</value>
-      </setting>
-      <setting name="TimeZone" serializeAs="String">
-        <value />
-      </setting>
-      <setting name="Format" serializeAs="String">
-        <value>F</value>
-      </setting>
-      <setting name="Color" serializeAs="String">
-        <value>#FFFFFFFF</value>
-      </setting>
-      <setting name="Opacity" serializeAs="String">
-        <value>0.85</value>
-      </setting>
-      <setting name="TextColor" serializeAs="String">
-        <value>#FF000000</value>
-      </setting>
-      <setting name="FontFamily" serializeAs="String">
-        <value>Consolas</value>
-      </setting>
-    </DesktopClock.Properties.Settings>
-  </userSettings>
-</configuration>

+ 27 - 127
DesktopClock/DesktopClock.csproj

@@ -1,145 +1,45 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
+<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
+
   <PropertyGroup>
-    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
-    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
-    <ProjectGuid>{E3E9D465-6F11-4B31-A1AA-CE85BCC8175E}</ProjectGuid>
     <OutputType>WinExe</OutputType>
-    <RootNamespace>DesktopClock</RootNamespace>
-    <AssemblyName>DesktopClock</AssemblyName>
-    <TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
-    <FileAlignment>512</FileAlignment>
-    <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
-    <WarningLevel>4</WarningLevel>
-    <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
-  </PropertyGroup>
-  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
-    <PlatformTarget>AnyCPU</PlatformTarget>
-    <DebugSymbols>true</DebugSymbols>
-    <DebugType>full</DebugType>
-    <Optimize>false</Optimize>
-    <OutputPath>bin\Debug\</OutputPath>
-    <DefineConstants>DEBUG;TRACE</DefineConstants>
-    <ErrorReport>prompt</ErrorReport>
-    <WarningLevel>4</WarningLevel>
-  </PropertyGroup>
-  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
-    <PlatformTarget>AnyCPU</PlatformTarget>
-    <DebugType>pdbonly</DebugType>
-    <Optimize>true</Optimize>
-    <OutputPath>bin\Release\</OutputPath>
-    <DefineConstants>TRACE</DefineConstants>
-    <ErrorReport>prompt</ErrorReport>
-    <WarningLevel>4</WarningLevel>
+    <TargetFramework>net48</TargetFramework>
+    <UseWPF>true</UseWPF>
+    <ApplicationIcon>DesktopClock.ico</ApplicationIcon>
   </PropertyGroup>
+
   <PropertyGroup>
-    <ApplicationIcon>DesktopClock.ico</ApplicationIcon>
+    <Company>Daniel Chalmers</Company>
+    <PackageLicenseExpression>MIT</PackageLicenseExpression>
+    <RepositoryUrl>https://github.com/danielchalmers/DesktopClock</RepositoryUrl>
+    <Copyright>© Daniel Chalmers 2021</Copyright>
+    <Version>1.0.0</Version>
   </PropertyGroup>
+
   <ItemGroup>
-    <Reference Include="System" />
-    <Reference Include="System.Data" />
-    <Reference Include="System.Xml" />
-    <Reference Include="Microsoft.CSharp" />
-    <Reference Include="System.Core" />
-    <Reference Include="System.Xml.Linq" />
-    <Reference Include="System.Data.DataSetExtensions" />
-    <Reference Include="System.Net.Http" />
-    <Reference Include="System.Xaml">
-      <RequiredTargetFramework>4.0</RequiredTargetFramework>
-    </Reference>
-    <Reference Include="WindowsBase" />
-    <Reference Include="PresentationCore" />
-    <Reference Include="PresentationFramework" />
+    <PackageReference Include="Costura.Fody" Version="4.1.0" PrivateAssets="All" />
+    <PackageReference Include="MvvmLightLibsStd10" Version="5.4.1.1" />
+    <PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
+    <PackageReference Include="PropertyChanged.Fody" Version="3.3.1" PrivateAssets="All" />
+    <PackageReference Include="WpfAboutView" Version="1.2.1" />
+    <PackageReference Include="WpfWindowPlacement" Version="3.0.0" />
   </ItemGroup>
+
   <ItemGroup>
-    <ApplicationDefinition Include="App.xaml">
-      <Generator>MSBuild:Compile</Generator>
-      <SubType>Designer</SubType>
-    </ApplicationDefinition>
-    <Compile Include="Properties\Settings.cs" />
-    <Compile Include="SettingsHelper.cs" />
-    <Compile Include="SystemClockTimer.cs" />
-    <Compile Include="DateTimeUtil.cs" />
-    <Page Include="MainWindow.xaml">
-      <Generator>MSBuild:Compile</Generator>
-      <SubType>Designer</SubType>
-    </Page>
-    <Compile Include="App.xaml.cs">
-      <DependentUpon>App.xaml</DependentUpon>
-      <SubType>Code</SubType>
-    </Compile>
-    <Compile Include="MainViewModel.cs" />
-    <Compile Include="MainWindow.xaml.cs">
-      <DependentUpon>MainWindow.xaml</DependentUpon>
-      <SubType>Code</SubType>
-    </Compile>
-  </ItemGroup>
-  <ItemGroup>
-    <Compile Include="Properties\AssemblyInfo.cs">
-      <SubType>Code</SubType>
-    </Compile>
-    <Compile Include="Properties\Resources.Designer.cs">
-      <AutoGen>True</AutoGen>
+    <Compile Update="Properties\Resources.Designer.cs">
       <DesignTime>True</DesignTime>
+      <AutoGen>True</AutoGen>
       <DependentUpon>Resources.resx</DependentUpon>
     </Compile>
-    <EmbeddedResource Include="Properties\Resources.resx">
-      <Generator>PublicResXFileCodeGenerator</Generator>
-      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
-    </EmbeddedResource>
-  </ItemGroup>
-  <ItemGroup>
-    <None Include="App.config">
-      <SubType>Designer</SubType>
-    </None>
-  </ItemGroup>
-  <ItemGroup>
-    <PackageReference Include="Costura.Fody">
-      <Version>3.1.6</Version>
-    </PackageReference>
-    <PackageReference Include="MvvmLightLibsStd10">
-      <Version>5.4.1.1</Version>
-    </PackageReference>
-    <PackageReference Include="Newtonsoft.Json">
-      <Version>12.0.2</Version>
-    </PackageReference>
-    <PackageReference Include="PropertyChanged.Fody">
-      <Version>2.5.14</Version>
-    </PackageReference>
-    <PackageReference Include="WpfAboutView">
-      <Version>1.2.1</Version>
-    </PackageReference>
-    <PackageReference Include="WpfWindowPlacement">
-      <Version>2.0.0</Version>
-    </PackageReference>
   </ItemGroup>
+
   <ItemGroup>
-    <None Include="FodyWeavers.xml" />
+    <EmbeddedResource Update="Properties\Resources.resx">
+      <Generator>ResXFileCodeGenerator</Generator>
+      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
+    </EmbeddedResource>
   </ItemGroup>
+
   <ItemGroup>
     <Resource Include="DesktopClock.ico" />
   </ItemGroup>
-  <ItemGroup>
-    <None Include="Resources\MVVM Light License.txt" />
-  </ItemGroup>
-  <ItemGroup>
-    <None Include="Resources\PropertyChanged.Fody License.txt" />
-  </ItemGroup>
-  <ItemGroup>
-    <None Include="Resources\WpfAboutView License.txt" />
-  </ItemGroup>
-  <ItemGroup>
-    <None Include="Resources\WpfWindowPlacement License.txt" />
-  </ItemGroup>
-  <ItemGroup>
-    <None Include="Resources\Costura.Fody License.txt" />
-  </ItemGroup>
-  <ItemGroup>
-    <None Include="Resources\DesktopClock License.txt" />
-  </ItemGroup>
-  <ItemGroup>
-    <None Include="Resources\Json.NET License.txt" />
-  </ItemGroup>
-  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
 </Project>

+ 2 - 2
DesktopClock/FodyWeavers.xml

@@ -1,5 +1,5 @@
-<?xml version="1.0" encoding="utf-8" ?>
-<Weavers>
+<?xml version="1.0" encoding="utf-8"?>
+<Weavers xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="FodyWeavers.xsd">
   <PropertyChanged />
   <Costura />
 </Weavers>

+ 0 - 12
DesktopClock/Properties/AssemblyInfo.cs

@@ -1,12 +0,0 @@
-using System.Reflection;
-using System.Runtime.InteropServices;
-using System.Windows;
-
-[assembly: AssemblyTitle("DesktopClock")]
-[assembly: AssemblyCompany("Daniel Chalmers")]
-[assembly: AssemblyCopyright("© Daniel Chalmers 2018")]
-[assembly: AssemblyProduct("DesktopClock")]
-[assembly: Guid("9523E886-243C-4AFB-BFC8-A97CE9823206")]
-[assembly: ComVisible(false)]
-[assembly: ThemeInfo(ResourceDictionaryLocation.None, ResourceDictionaryLocation.SourceAssembly)]
-[assembly: AssemblyVersion("1.0.0")]

+ 11 - 11
DesktopClock/Properties/Resources.Designer.cs

@@ -19,10 +19,10 @@ namespace DesktopClock.Properties {
     // class via a tool like ResGen or Visual Studio.
     // To add or remove a member, edit your .ResX file then rerun ResGen
     // with the /str option, or rebuild your VS project.
-    [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")]
+    [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")]
     [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
     [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
-    public class Resources {
+    internal class Resources {
         
         private static global::System.Resources.ResourceManager resourceMan;
         
@@ -36,7 +36,7 @@ namespace DesktopClock.Properties {
         ///   Returns the cached ResourceManager instance used by this class.
         /// </summary>
         [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
-        public static global::System.Resources.ResourceManager ResourceManager {
+        internal static global::System.Resources.ResourceManager ResourceManager {
             get {
                 if (object.ReferenceEquals(resourceMan, null)) {
                     global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("DesktopClock.Properties.Resources", typeof(Resources).Assembly);
@@ -51,7 +51,7 @@ namespace DesktopClock.Properties {
         ///   resource lookups using this strongly typed resource class.
         /// </summary>
         [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
-        public static global::System.Globalization.CultureInfo Culture {
+        internal static global::System.Globalization.CultureInfo Culture {
             get {
                 return resourceCulture;
             }
@@ -69,7 +69,7 @@ namespace DesktopClock.Properties {
         ///
         ///The above  [rest of string was truncated]&quot;;.
         /// </summary>
-        public static string Costura_Fody_License {
+        internal static string Costura_Fody_License {
             get {
                 return ResourceManager.GetString("Costura_Fody_License", resourceCulture);
             }
@@ -84,7 +84,7 @@ namespace DesktopClock.Properties {
         ///
         ///The above copyright not [rest of string was truncated]&quot;;.
         /// </summary>
-        public static string DesktopClock_License {
+        internal static string DesktopClock_License {
             get {
                 return ResourceManager.GetString("DesktopClock_License", resourceCulture);
             }
@@ -99,7 +99,7 @@ namespace DesktopClock.Properties {
         ///
         ///The above copyright n [rest of string was truncated]&quot;;.
         /// </summary>
-        public static string Json_NET_License {
+        internal static string Json_NET_License {
             get {
                 return ResourceManager.GetString("Json_NET_License", resourceCulture);
             }
@@ -114,7 +114,7 @@ namespace DesktopClock.Properties {
         ///
         ///The above copyri [rest of string was truncated]&quot;;.
         /// </summary>
-        public static string MVVM_Light_License {
+        internal static string MVVM_Light_License {
             get {
                 return ResourceManager.GetString("MVVM_Light_License", resourceCulture);
             }
@@ -129,7 +129,7 @@ namespace DesktopClock.Properties {
         ///
         ///The above  [rest of string was truncated]&quot;;.
         /// </summary>
-        public static string PropertyChanged_Fody_License {
+        internal static string PropertyChanged_Fody_License {
             get {
                 return ResourceManager.GetString("PropertyChanged_Fody_License", resourceCulture);
             }
@@ -144,7 +144,7 @@ namespace DesktopClock.Properties {
         ///
         ///The above copyright not [rest of string was truncated]&quot;;.
         /// </summary>
-        public static string WpfAboutView_License {
+        internal static string WpfAboutView_License {
             get {
                 return ResourceManager.GetString("WpfAboutView_License", resourceCulture);
             }
@@ -159,7 +159,7 @@ namespace DesktopClock.Properties {
         ///
         ///The above copyright not [rest of string was truncated]&quot;;.
         /// </summary>
-        public static string WpfWindowPlacement_License {
+        internal static string WpfWindowPlacement_License {
             get {
                 return ResourceManager.GetString("WpfWindowPlacement_License", resourceCulture);
             }