mirror of
https://github.com/QL-Win/QuickLook.git
synced 2026-05-08 03:06:29 +08:00
82 lines
3.3 KiB
XML
82 lines
3.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
<PropertyGroup>
|
|
<OutputType>Library</OutputType>
|
|
<TargetFramework>net462</TargetFramework>
|
|
<RootNamespace>QuickLook.Common</RootNamespace>
|
|
<AssemblyName>QuickLook.Common</AssemblyName>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<UseWPF>true</UseWPF>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<LangVersion>latest</LangVersion>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<ProjectGuid>{85FDD6BA-871D-46C8-BD64-F6BB0CB5EA95}</ProjectGuid>
|
|
<Authors>QL-Win</Authors>
|
|
<Company>QL-Win</Company>
|
|
<Description>This repository holds the common library of QuickLook. The library is shared among all QuickLook projects.</Description>
|
|
<PackageProjectUrl>https://github.com/QL-Win/QuickLook</PackageProjectUrl>
|
|
<RepositoryUrl>https://github.com/QL-Win/QuickLook</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
<PackageTags>QuickLook</PackageTags>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
<PackageIcon>app.png</PackageIcon>
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<Platforms>AnyCPU;x64;ARM64</Platforms>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>portable</DebugType>
|
|
<Optimize>false</Optimize>
|
|
<OutputPath>..\Build\Debug\</OutputPath>
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
<WarningLevel>4</WarningLevel>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>portable</DebugType>
|
|
<Optimize>false</Optimize>
|
|
<OutputPath>..\Build\Debug\</OutputPath>
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
<WarningLevel>4</WarningLevel>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
|
|
<DebugType>portable</DebugType>
|
|
<Optimize>true</Optimize>
|
|
<OutputPath>..\Build\Release\</OutputPath>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
<WarningLevel>4</WarningLevel>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
<DebugType>portable</DebugType>
|
|
<Optimize>true</Optimize>
|
|
<OutputPath>..\Build\Release\</OutputPath>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
<WarningLevel>4</WarningLevel>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="Microsoft.CSharp" />
|
|
<Reference Include="WindowsBase" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="..\GitVersion.cs">
|
|
<Link>Properties\GitVersion.cs</Link>
|
|
</Compile>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include=".\README.md" Pack="true" PackagePath="" />
|
|
<None Include=".\app.png" Pack="true" PackagePath="" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<PreBuildEvent>powershell -ExecutionPolicy Bypass -file "$(SolutionDir)Scripts\update-version.ps1"</PreBuildEvent>
|
|
</PropertyGroup>
|
|
</Project>
|