Files
Steam-auto-crack/Steamless.API/Steamless.API.csproj
oureveryday 12fe573348 Fix Steam AppList API
Update to .NET 10.0
Use WPF Fluent UI
Misc fixes
2025-11-16 12:07:32 +08:00

19 lines
839 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0-windows</TargetFramework>
<OutputType>Library</OutputType>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<Platforms>x86</Platforms>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
<OutputPath>..\Steamless\bin\x86\Debug\Plugins\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
<OutputPath>..\Steamless\bin\x86\Release\Plugins\</OutputPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="Microsoft.Windows.Compatibility" Version="10.0.0" />
<PackageReference Include="System.IO.Packaging" Version="10.0.0" />
</ItemGroup>
</Project>