mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-15 03:42:04 +01:00
- put file name in Sqlite connect string in quotes - improvements to Mediatek Philips 120+125/Sony serializer (physically reorder XML nodes, use flags stored in Java serialized blob) - selecting a RefList changed the current working directory, which prevented .ini files to be found by loaders
52 lines
1.9 KiB
XML
52 lines
1.9 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<Import Project="..\Solution.props" />
|
|
<PropertyGroup>
|
|
<TargetFramework>net48</TargetFramework>
|
|
<OutputType>Library</OutputType>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<OutputPath>..\Debug\</OutputPath>
|
|
<LangVersion>latest</LangVersion>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<OutputPath>..\Release\</OutputPath>
|
|
<LangVersion>latest</LangVersion>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="DevExpress.Data.Desktop" Version="23.2.5" />
|
|
<PackageReference Include="DevExpress.Printing.Core" Version="23.2.5" />
|
|
<PackageReference Include="DevExpress.Utils" Version="23.2.5" />
|
|
<PackageReference Include="DevExpress.Win" Version="23.2.5" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\ChanSort.Api\ChanSort.Api.csproj" />
|
|
<ProjectReference Include="..\ChanSort.Loader.LG\ChanSort.Loader.LG.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Reference Include="DevExpress.Data.Desktop.v23.2">
|
|
|
|
</Reference>
|
|
<Reference Include="DevExpress.Data.v23.2">
|
|
|
|
</Reference>
|
|
<Reference Include="DevExpress.Drawing.v23.2">
|
|
|
|
</Reference>
|
|
<Reference Include="DevExpress.Printing.v23.2.Core">
|
|
|
|
</Reference>
|
|
<Reference Include="DevExpress.Utils.v23.2">
|
|
|
|
</Reference>
|
|
<Reference Include="DevExpress.XtraEditors.v23.2">
|
|
|
|
</Reference>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Update="System.Memory" Version="4.6.3" />
|
|
<PackageReference Update="System.Runtime.CompilerServices.Unsafe" Version="6.1.2" />
|
|
</ItemGroup>
|
|
</Project> |