PersistentWindows/Ninjacrab.PersistentWindows.Solution/Common/Common.csproj
2023-03-03 11:59:41 -08:00

100 lines
No EOL
4.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{4CC8B3FB-214B-42AB-8AAE-E7DC5E266EF0}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>PersistentWindows.Common</RootNamespace>
<AssemblyName>PersistentWindows.Common</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<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' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Deploy|AnyCPU'">
<OutputPath>bin\Deploy\</OutputPath>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Diagnostics\Log.cs" />
<Compile Include="LaunchProcess.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="LaunchProcess.Designer.cs">
<DependentUpon>LaunchProcess.cs</DependentUpon>
</Compile>
<Compile Include="LayoutProfile.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="LayoutProfile.Designer.cs">
<DependentUpon>LayoutProfile.cs</DependentUpon>
</Compile>
<Compile Include="Models\ApplicationDisplayMetrics.cs" />
<Compile Include="Models\DesktopDisplayMetrics.cs" />
<Compile Include="NameDbKey.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="NameDbKey.Designer.cs">
<DependentUpon>NameDbKey.cs</DependentUpon>
</Compile>
<Compile Include="PersistentWindowProcessor.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="WinApiBridge\CallWindowProcedureParam.cs" />
<Compile Include="WinApiBridge\Display.cs" />
<Compile Include="WinApiBridge\MonitorInfo.cs" />
<Compile Include="WinApiBridge\SetWindowPosFlags.cs" />
<Compile Include="WinApiBridge\ShowWindowCommands.cs" />
<Compile Include="WinApiBridge\User32.cs" />
<Compile Include="WinApiBridge\WindowPlacement.cs" />
<Compile Include="WinApiBridge\WindowsMessage.cs" />
<Compile Include="WinApiBridge\WindowsPosition.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="LiteDB">
<Version>5.0.13</Version>
</PackageReference>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="LayoutProfile.resx">
<DependentUpon>LayoutProfile.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="LaunchProcess.resx">
<DependentUpon>LaunchProcess.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="NameDbKey.resx">
<DependentUpon>NameDbKey.cs</DependentUpon>
</EmbeddedResource>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>