1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{B7E890E7-BF50-4450-9A52-C105BD98651C}</ProjectGuid>
<OutputType>WinExe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>TrlUtil</RootNamespace>
<AssemblyName>TrlUtil</AssemblyName>
<ApplicationIcon>Resources\KeePass.ico</ApplicationIcon>
<FileUpgradeFlags>
</FileUpgradeFlags>
<OldToolsVersion>2.0</OldToolsVersion>
<UpgradeBackupLocation>
</UpgradeBackupLocation>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\</OutputPath>
<DefineConstants>TRACE;DEBUG;KeeTranslationUtility</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\</OutputPath>
<DefineConstants>TRACE;KeeTranslationUtility</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="AccelKeysCheck.cs" />
<Compile Include="App\Configuration\TceApplication.cs" />
<Compile Include="App\Configuration\TceConfig.cs" />
<Compile Include="App\TuDefs.cs" />
<Compile Include="FormTrlMgr.cs" />
<Compile Include="Native\NativeMethods.cs" />
<Compile Include="TrlImport.cs" />
<Compile Include="MainForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="MainForm.Designer.cs">
<DependentUpon>MainForm.cs</DependentUpon>
</Compile>
<Compile Include="PreviewForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<EmbeddedResource Include="MainForm.resx">
<SubType>Designer</SubType>
<DependentUpon>MainForm.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
<SubType>Designer</SubType>
</EmbeddedResource>
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
<DesignTime>True</DesignTime>
</Compile>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\KeePass\KeePass.csproj">
<Project>{10938016-DEE2-4A25-9A5A-8FD3444379CA}</Project>
<Name>KeePass</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="Resources\B16x16_Keyboard_Layout.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\KeePass.ico" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\B16x16_FileSave.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\B16x16_FileSaveAs.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\B16x16_Folder_Yellow_Open.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\B16x16_Binary.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\B16x16_KRec_Record.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\B16x16_LedGreen.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\B16x16_LedLightBlue.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\B16x16_LedLightGreen.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\B16x16_LedOrange.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\B16x16_View_Remove.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\B16x16_Down.png" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\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>
|