mirror of
https://github.com/LorisYounger/VPet.git
synced 2024-08-30 18:42:36 +00:00
VPet.Solution 升级至 .NET8
This commit is contained in:
parent
d62be3fd6d
commit
a0d2933d15
@ -1,52 +0,0 @@
|
|||||||
using System.Reflection;
|
|
||||||
using System.Runtime.InteropServices;
|
|
||||||
using System.Windows;
|
|
||||||
|
|
||||||
// 有关程序集的一般信息由以下
|
|
||||||
// 控制。更改这些特性值可修改
|
|
||||||
// 与程序集关联的信息。
|
|
||||||
[assembly: AssemblyTitle("VPet.Solution")]
|
|
||||||
[assembly: AssemblyDescription("")]
|
|
||||||
[assembly: AssemblyConfiguration("")]
|
|
||||||
[assembly: AssemblyCompany("LBGame")]
|
|
||||||
[assembly: AssemblyProduct("VPet.Solution")]
|
|
||||||
[assembly: AssemblyCopyright("Copyright © LBGame 2023")]
|
|
||||||
[assembly: AssemblyTrademark("")]
|
|
||||||
[assembly: AssemblyCulture("")]
|
|
||||||
|
|
||||||
// 将 ComVisible 设置为 false 会使此程序集中的类型
|
|
||||||
//对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型
|
|
||||||
//请将此类型的 ComVisible 特性设置为 true。
|
|
||||||
[assembly: ComVisible(false)]
|
|
||||||
|
|
||||||
//若要开始生成可本地化的应用程序,请设置
|
|
||||||
//.csproj 文件中的 <UICulture>CultureYouAreCodingWith</UICulture>
|
|
||||||
//例如,如果您在源文件中使用的是美国英语,
|
|
||||||
//使用的是美国英语,请将 <UICulture> 设置为 en-US。 然后取消
|
|
||||||
//对以下 NeutralResourceLanguage 特性的注释。 更新
|
|
||||||
//以下行中的“en-US”以匹配项目文件中的 UICulture 设置。
|
|
||||||
|
|
||||||
//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
|
|
||||||
|
|
||||||
|
|
||||||
[assembly: ThemeInfo(
|
|
||||||
ResourceDictionaryLocation.None, //主题特定资源词典所处位置
|
|
||||||
//(未在页面中找到资源时使用,
|
|
||||||
//或应用程序资源字典中找到时使用)
|
|
||||||
ResourceDictionaryLocation.SourceAssembly //常规资源词典所处位置
|
|
||||||
//(未在页面中找到资源时使用,
|
|
||||||
//、应用程序或任何主题专用资源字典中找到时使用)
|
|
||||||
)]
|
|
||||||
|
|
||||||
// 程序集的版本信息由下列四个值组成:
|
|
||||||
//
|
|
||||||
// 主版本
|
|
||||||
// 次版本
|
|
||||||
// 生成号
|
|
||||||
// 修订号
|
|
||||||
//
|
|
||||||
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
|
|
||||||
//通过使用 "*",如下所示:
|
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
|
||||||
[assembly: AssemblyVersion("1.0.0.0")]
|
|
||||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
|
@ -1,290 +1,29 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<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')" />
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
<TargetFramework>net8.0-windows</TargetFramework>
|
||||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
||||||
<ProjectGuid>{4DF0C967-9AF9-4F39-968F-21F604DAFE11}</ProjectGuid>
|
|
||||||
<OutputType>WinExe</OutputType>
|
<OutputType>WinExe</OutputType>
|
||||||
<RootNamespace>VPet.Solution</RootNamespace>
|
|
||||||
<AssemblyName>VPet.Solution</AssemblyName>
|
|
||||||
<TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
|
|
||||||
<FileAlignment>512</FileAlignment>
|
|
||||||
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
|
||||||
<WarningLevel>4</WarningLevel>
|
|
||||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
|
||||||
<Deterministic>true</Deterministic>
|
|
||||||
<LangVersion>latest</LangVersion>
|
<LangVersion>latest</LangVersion>
|
||||||
</PropertyGroup>
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
<UseWPF>true</UseWPF>
|
||||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
|
||||||
<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>
|
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<ApplicationIcon>icon.ico</ApplicationIcon>
|
<ApplicationIcon>icon.ico</ApplicationIcon>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="FastMember" Version="1.5.0">
|
<ProjectReference Include="..\VPet-Simulator.Core\VPet-Simulator.Core.csproj" />
|
||||||
<HintPath>..\packages\FastMember.1.5.0\lib\net461\FastMember.dll</HintPath>
|
<ProjectReference Include="..\VPet-Simulator.Windows.Interface\VPet-Simulator.Windows.Interface.csproj" />
|
||||||
</Reference>
|
|
||||||
<Reference Include="LinePutScript" Version="1.10.2">
|
|
||||||
<HintPath>..\packages\LinePutScript.1.10.2\lib\net462\LinePutScript.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="LinePutScript.Localization.WPF" Version="1.0.6">
|
|
||||||
<HintPath>..\packages\LinePutScript.Localization.WPF.1.0.6\lib\net462\LinePutScript.Localization.WPF.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="Panuon.WPF" Version="1.0.3">
|
|
||||||
<HintPath>..\packages\Panuon.WPF.1.0.3\lib\net462\Panuon.WPF.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="Panuon.WPF.UI, Version=1.1.17.3, Culture=neutral, processorArchitecture=MSIL">
|
|
||||||
<HintPath>..\packages\Panuon.WPF.UI.1.1.17.3\lib\net462\Panuon.WPF.UI.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="System" />
|
|
||||||
<Reference Include="System.Data" />
|
|
||||||
<Reference Include="System.Drawing" />
|
|
||||||
<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" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ApplicationDefinition Include="App.xaml">
|
|
||||||
<Generator>MSBuild:Compile</Generator>
|
|
||||||
<SubType>Designer</SubType>
|
|
||||||
</ApplicationDefinition>
|
|
||||||
<Compile Include="Converters\AllIsBoolConverter.cs" />
|
|
||||||
<Compile Include="Converters\AllIsBoolToVisibilityConverter.cs" />
|
|
||||||
<Compile Include="Converters\ConverterBase\BoolToValueConverterBase.cs" />
|
|
||||||
<Compile Include="Converters\BrushToMediaColorConverter.cs" />
|
|
||||||
<Compile Include="Converters\CalculatorConverter.cs" />
|
|
||||||
<Compile Include="Converters\ConverterBase\CanInverterMultiValueConverter.cs" />
|
|
||||||
<Compile Include="Converters\ConverterBase\CanInverterValueConverter.cs" />
|
|
||||||
<Compile Include="Converters\ConverterBase\ConverterBase.cs" />
|
|
||||||
<Compile Include="Converters\ConverterBase\HaveRatioConverter.cs" />
|
|
||||||
<Compile Include="Converters\ConverterBase\MultiValueConverterBase.cs" />
|
|
||||||
<Compile Include="Converters\ConverterBase\MultiValueToBoolConverter.cs" />
|
|
||||||
<Compile Include="Converters\ConverterBase\ValueConverterBase.cs" />
|
|
||||||
<Compile Include="Converters\EqualsConverter.cs" />
|
|
||||||
<Compile Include="Converters\IsBoolConverter.cs" />
|
|
||||||
<Compile Include="Converters\MarginConverter.cs" />
|
|
||||||
<Compile Include="Converters\MediaColorToBrushConverter.cs" />
|
|
||||||
<Compile Include="Converters\NullToVisibilityConverter.cs" />
|
|
||||||
<Compile Include="Converters\StringFormatConverter.cs" />
|
|
||||||
<Compile Include="Converters\BoolToVisibilityConverter.cs" />
|
|
||||||
<Compile Include="Converters\MaxConverter.cs" />
|
|
||||||
<Compile Include="Converters\ValueToBoolConverter.cs" />
|
|
||||||
<Compile Include="Converters\BoolInverter.cs" />
|
|
||||||
<Compile Include="Models\ModLoader.cs" />
|
|
||||||
<Compile Include="Models\SaveViewer\SaveModel.cs" />
|
|
||||||
<Compile Include="Models\SaveViewer\StatisticDataModel.cs" />
|
|
||||||
<Compile Include="Models\SettingEditor\CustomizedSettingModel.cs" />
|
|
||||||
<Compile Include="Models\SettingEditor\DiagnosticSettingModel.cs" />
|
|
||||||
<Compile Include="Models\SettingEditor\GraphicsSettingModel.cs" />
|
|
||||||
<Compile Include="Models\SettingEditor\InteractiveSettingModel.cs" />
|
|
||||||
<Compile Include="Models\SettingEditor\ModSettingModel.cs" />
|
|
||||||
<Compile Include="Models\SettingEditor\SystemSettingModel.cs" />
|
|
||||||
<Compile Include="Utils\ClearFocus.cs" />
|
|
||||||
<Compile Include="Utils\CompareUtils.cs" />
|
|
||||||
<Compile Include="Utils\ElementHelper.cs" />
|
|
||||||
<Compile Include="Utils\FindTopParent.cs" />
|
|
||||||
<Compile Include="Utils\ReflectionUtils.cs" />
|
|
||||||
<Compile Include="ViewModels\MainWindowVM.cs" />
|
|
||||||
<Compile Include="ViewModels\SaveViewer\SaveDataPageVM.cs" />
|
|
||||||
<Compile Include="ViewModels\SaveViewer\SaveStatisticPageVM.cs" />
|
|
||||||
<Compile Include="ViewModels\SaveViewer\SaveWindowVM.cs" />
|
|
||||||
<Compile Include="ViewModels\SettingEditor\CustomizedSettingPageVM.cs" />
|
|
||||||
<Compile Include="ViewModels\SettingEditor\DiagnosticSettingPageVM.cs" />
|
|
||||||
<Compile Include="ViewModels\SettingEditor\ModSettingPageVM.cs" />
|
|
||||||
<Compile Include="Models\SettingEditor\SettingModel.cs" />
|
|
||||||
<Compile Include="ViewModels\SettingEditor\SystemSettingPageVM.cs" />
|
|
||||||
<Compile Include="Views\SaveViewer\SaveDataPage.xaml.cs">
|
|
||||||
<DependentUpon>SaveDataPage.xaml</DependentUpon>
|
|
||||||
</Compile>
|
|
||||||
<Compile Include="Views\SaveViewer\SaveStatisticPage.xaml.cs">
|
|
||||||
<DependentUpon>SaveStatisticPage.xaml</DependentUpon>
|
|
||||||
</Compile>
|
|
||||||
<Compile Include="Views\SaveViewer\SaveWindow.xaml.cs">
|
|
||||||
<DependentUpon>SaveWindow.xaml</DependentUpon>
|
|
||||||
</Compile>
|
|
||||||
<Compile Include="Views\SettingEditor\SettingWindow.xaml.cs">
|
|
||||||
<DependentUpon>SettingWindow.xaml</DependentUpon>
|
|
||||||
</Compile>
|
|
||||||
<Compile Include="Views\SettingEditor\CustomizedSettingPage.xaml.cs">
|
|
||||||
<DependentUpon>CustomizedSettingPage.xaml</DependentUpon>
|
|
||||||
</Compile>
|
|
||||||
<Compile Include="Views\SettingEditor\DiagnosticSettingPage.xaml.cs">
|
|
||||||
<DependentUpon>DiagnosticSettingPage.xaml</DependentUpon>
|
|
||||||
</Compile>
|
|
||||||
<Compile Include="Views\SettingEditor\ModSettingPage.xaml.cs">
|
|
||||||
<DependentUpon>ModSettingPage.xaml</DependentUpon>
|
|
||||||
</Compile>
|
|
||||||
<Compile Include="Views\SettingEditor\SystemSettingPage.xaml.cs">
|
|
||||||
<DependentUpon>SystemSettingPage.xaml</DependentUpon>
|
|
||||||
</Compile>
|
|
||||||
<Page Include="Converters.xaml">
|
|
||||||
<Generator>MSBuild:Compile</Generator>
|
|
||||||
<SubType>Designer</SubType>
|
|
||||||
</Page>
|
|
||||||
<Page Include="Styles.xaml">
|
|
||||||
<Generator>MSBuild:Compile</Generator>
|
|
||||||
<SubType>Designer</SubType>
|
|
||||||
</Page>
|
|
||||||
<Page Include="Templates.xaml">
|
|
||||||
<Generator>MSBuild:Compile</Generator>
|
|
||||||
<SubType>Designer</SubType>
|
|
||||||
</Page>
|
|
||||||
<Page Include="Views\SaveViewer\SaveDataPage.xaml">
|
|
||||||
<SubType>Designer</SubType>
|
|
||||||
<Generator>MSBuild:Compile</Generator>
|
|
||||||
</Page>
|
|
||||||
<Page Include="Views\SaveViewer\SaveStatisticPage.xaml">
|
|
||||||
<SubType>Designer</SubType>
|
|
||||||
<Generator>MSBuild:Compile</Generator>
|
|
||||||
</Page>
|
|
||||||
<Page Include="Views\SaveViewer\SaveWindow.xaml">
|
|
||||||
<Generator>MSBuild:Compile</Generator>
|
|
||||||
<SubType>Designer</SubType>
|
|
||||||
</Page>
|
|
||||||
<Page Include="Views\SettingEditor\SettingWindow.xaml">
|
|
||||||
<Generator>MSBuild:Compile</Generator>
|
|
||||||
<SubType>Designer</SubType>
|
|
||||||
</Page>
|
|
||||||
<Page Include="Views\SettingEditor\CustomizedSettingPage.xaml">
|
|
||||||
<SubType>Designer</SubType>
|
|
||||||
<Generator>MSBuild:Compile</Generator>
|
|
||||||
</Page>
|
|
||||||
<Page Include="Views\SettingEditor\DiagnosticSettingPage.xaml">
|
|
||||||
<SubType>Designer</SubType>
|
|
||||||
<Generator>MSBuild:Compile</Generator>
|
|
||||||
</Page>
|
|
||||||
<Page Include="Views\SettingEditor\GraphicsSettingPage.xaml">
|
|
||||||
<SubType>Designer</SubType>
|
|
||||||
<Generator>MSBuild:Compile</Generator>
|
|
||||||
</Page>
|
|
||||||
<Page Include="Views\SettingEditor\InteractiveSettingPage.xaml">
|
|
||||||
<SubType>Designer</SubType>
|
|
||||||
<Generator>MSBuild:Compile</Generator>
|
|
||||||
</Page>
|
|
||||||
<Page Include="Views\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="ViewModels\SettingEditor\GraphicsSettingPageVM.cs" />
|
|
||||||
<Compile Include="ViewModels\SettingEditor\InteractiveSettingPageVM.cs" />
|
|
||||||
<Compile Include="ViewModels\SettingEditor\SettingWindowVM.cs" />
|
|
||||||
<Compile Include="Views\SettingEditor\GraphicsSettingPage.xaml.cs">
|
|
||||||
<DependentUpon>GraphicsSettingPage.xaml</DependentUpon>
|
|
||||||
</Compile>
|
|
||||||
<Compile Include="Views\SettingEditor\InteractiveSettingPage.xaml.cs">
|
|
||||||
<DependentUpon>InteractiveSettingPage.xaml</DependentUpon>
|
|
||||||
</Compile>
|
|
||||||
<Compile Include="Views\MainWindow.xaml.cs">
|
|
||||||
<DependentUpon>MainWindow.xaml</DependentUpon>
|
|
||||||
</Compile>
|
|
||||||
<Compile Include="SimpleObservable\ObservableClass\INotifyPropertyChangedX.cs" />
|
|
||||||
<Compile Include="SimpleObservable\ObservableClass\INotifyPropertyChangingX.cs" />
|
|
||||||
<Compile Include="SimpleObservable\ObservableClass\ObservableClass.cs" />
|
|
||||||
<Compile Include="SimpleObservable\ObservableClass\PropertyChangedXEventArgs.cs" />
|
|
||||||
<Compile Include="SimpleObservable\ObservableClass\PropertyChangedXEventHandler.cs" />
|
|
||||||
<Compile Include="SimpleObservable\ObservableClass\PropertyChangingXEventArgs.cs" />
|
|
||||||
<Compile Include="SimpleObservable\ObservableClass\PropertyChangingXEventHandler.cs" />
|
|
||||||
<Compile Include="SimpleObservable\ObservableCommand\ExecuteAsyncEventHandler.cs" />
|
|
||||||
<Compile Include="SimpleObservable\ObservableCommand\ExecuteEventHandler.cs" />
|
|
||||||
<Compile Include="SimpleObservable\ObservableCommand\NotifyReceivedEventHandler.cs" />
|
|
||||||
<Compile Include="SimpleObservable\ObservableCommand\ObservableCommand.cs" />
|
|
||||||
<Compile Include="SimpleObservable\ObservableCommand\ObservableCommandT.cs" />
|
|
||||||
<Compile Include="Utils\ObservableEnumFlags.cs" />
|
|
||||||
<Compile Include="Utils\Expansions.cs" />
|
|
||||||
<Compile Include="Utils\HashCode.cs" />
|
|
||||||
<Compile Include="Utils\ObservableRange.cs" />
|
|
||||||
<Compile Include="Utils\ObservablePoint.cs" />
|
|
||||||
<Compile Include="Utils\ObservableRect.cs" />
|
|
||||||
<Compile Include="Utils\HKWUtils.cs" />
|
|
||||||
<Compile Include="Resources\NativeResources.cs" />
|
|
||||||
<Compile Include="Usings.cs" />
|
|
||||||
<Page Include="NativeStyles.xaml">
|
|
||||||
<Generator>MSBuild:Compile</Generator>
|
|
||||||
<SubType>Designer</SubType>
|
|
||||||
<ContainsDesignTimeResources>true</ContainsDesignTimeResources>
|
|
||||||
</Page>
|
|
||||||
<Compile Include="NativeStyles.xaml.cs">
|
|
||||||
<DependentUpon>NativeStyles.xaml</DependentUpon>
|
|
||||||
</Compile>
|
|
||||||
<Page Include="Views\SettingEditor\ModSettingPage.xaml">
|
|
||||||
<SubType>Designer</SubType>
|
|
||||||
<Generator>MSBuild:Compile</Generator>
|
|
||||||
</Page>
|
|
||||||
<Page Include="Views\SettingEditor\SystemSettingPage.xaml">
|
|
||||||
<SubType>Designer</SubType>
|
|
||||||
<Generator>MSBuild:Compile</Generator>
|
|
||||||
</Page>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<Compile Include="Properties\AssemblyInfo.cs">
|
|
||||||
<SubType>Code</SubType>
|
|
||||||
</Compile>
|
|
||||||
<Compile Include="Properties\Resources.Designer.cs">
|
|
||||||
<AutoGen>True</AutoGen>
|
|
||||||
<DesignTime>True</DesignTime>
|
|
||||||
<DependentUpon>Resources.resx</DependentUpon>
|
|
||||||
</Compile>
|
|
||||||
<Compile Include="Properties\Settings.Designer.cs">
|
|
||||||
<AutoGen>True</AutoGen>
|
|
||||||
<DependentUpon>Settings.settings</DependentUpon>
|
|
||||||
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
|
||||||
</Compile>
|
|
||||||
<EmbeddedResource Include="Properties\Resources.resx">
|
|
||||||
<Generator>ResXFileCodeGenerator</Generator>
|
|
||||||
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|
||||||
</EmbeddedResource>
|
|
||||||
<None Include="packages.config" />
|
|
||||||
<None Include="Properties\Settings.settings">
|
|
||||||
<Generator>SettingsSingleFileGenerator</Generator>
|
|
||||||
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
|
|
||||||
</None>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<None Include="App.config" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ProjectReference Include="..\VPet-Simulator.Core\VPet-Simulator.Core.csproj">
|
|
||||||
<Project>{7bd4cb1d-c8f3-4349-9bf0-cd11789130ba}</Project>
|
|
||||||
<Name>VPet-Simulator.Core</Name>
|
|
||||||
</ProjectReference>
|
|
||||||
<ProjectReference Include="..\VPet-Simulator.Windows.Interface\VPet-Simulator.Windows.Interface.csproj">
|
|
||||||
<Project>{dcad838a-1a02-4bdf-962c-fd47c6006d28}</Project>
|
|
||||||
<Name>VPet-Simulator.Windows.Interface</Name>
|
|
||||||
</ProjectReference>
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Resource Include="icon.ico" />
|
<Resource Include="icon.ico" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
<ItemGroup>
|
||||||
|
<PackageReference Include="FastMember" Version="1.5.0" />
|
||||||
|
<PackageReference Include="LinePutScript" Version="1.10.2" />
|
||||||
|
<PackageReference Include="LinePutScript.Localization.WPF" Version="1.0.6" />
|
||||||
|
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
|
||||||
|
<PackageReference Include="Panuon.WPF" Version="1.0.3" />
|
||||||
|
<PackageReference Include="Panuon.WPF.UI" Version="1.1.17.3" />
|
||||||
|
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
|
||||||
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<packages>
|
|
||||||
<package id="FastMember" version="1.5.0" targetFramework="net462" />
|
|
||||||
<package id="LinePutScript" version="1.10.2" targetFramework="net462" />
|
|
||||||
<package id="LinePutScript.Localization.WPF" version="1.0.6" targetFramework="net462" />
|
|
||||||
<package id="Panuon.WPF" version="1.0.3" targetFramework="net462" />
|
|
||||||
<package id="Panuon.WPF.UI" version="1.1.17.3" targetFramework="net462" />
|
|
||||||
</packages>
|
|
4
VPet.sln
4
VPet.sln
@ -1,4 +1,4 @@
|
|||||||
|
|
||||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
# Visual Studio Version 17
|
# Visual Studio Version 17
|
||||||
VisualStudioVersion = 17.3.32804.467
|
VisualStudioVersion = 17.3.32804.467
|
||||||
@ -16,7 +16,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
|
|||||||
.editorconfig = .editorconfig
|
.editorconfig = .editorconfig
|
||||||
EndProjectSection
|
EndProjectSection
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VPet.Solution", "VPet.Solution\VPet.Solution.csproj", "{4DF0C967-9AF9-4F39-968F-21F604DAFE11}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VPet.Solution", "VPet.Solution\VPet.Solution.csproj", "{4DF0C967-9AF9-4F39-968F-21F604DAFE11}"
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
Loading…
Reference in New Issue
Block a user