|
@@ -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>
|