| 1 | <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> |
|---|
| 2 | <PropertyGroup> |
|---|
| 3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
|---|
| 4 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
|---|
| 5 | <ProductVersion>9.0.30729</ProductVersion> |
|---|
| 6 | <SchemaVersion>2.0</SchemaVersion> |
|---|
| 7 | <ProjectGuid>{D083E1A8-3A4C-4683-9B3F-D5FEDE61B9C9}</ProjectGuid> |
|---|
| 8 | <OutputType>Library</OutputType> |
|---|
| 9 | <AppDesignerFolder>Properties</AppDesignerFolder> |
|---|
| 10 | <RootNamespace>Eraser.Util</RootNamespace> |
|---|
| 11 | <AssemblyName>Eraser.Util</AssemblyName> |
|---|
| 12 | <SignAssembly>true</SignAssembly> |
|---|
| 13 | <AssemblyOriginatorKeyFile>..\Strong Name.snk</AssemblyOriginatorKeyFile> |
|---|
| 14 | <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> |
|---|
| 15 | </PropertyGroup> |
|---|
| 16 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |
|---|
| 17 | <DebugSymbols>true</DebugSymbols> |
|---|
| 18 | <DebugType>full</DebugType> |
|---|
| 19 | <Optimize>false</Optimize> |
|---|
| 20 | <OutputPath>..\bin\Debug\</OutputPath> |
|---|
| 21 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
|---|
| 22 | <ErrorReport>prompt</ErrorReport> |
|---|
| 23 | <WarningLevel>4</WarningLevel> |
|---|
| 24 | <AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
|---|
| 25 | <CodeAnalysisRules>-Microsoft.Interoperability#CA1404;-Microsoft.Naming#CA1704;-Microsoft.Naming#CA1707</CodeAnalysisRules> |
|---|
| 26 | </PropertyGroup> |
|---|
| 27 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |
|---|
| 28 | <DebugType>pdbonly</DebugType> |
|---|
| 29 | <Optimize>true</Optimize> |
|---|
| 30 | <OutputPath>..\bin\Release\</OutputPath> |
|---|
| 31 | <DefineConstants>TRACE</DefineConstants> |
|---|
| 32 | <ErrorReport>prompt</ErrorReport> |
|---|
| 33 | <WarningLevel>4</WarningLevel> |
|---|
| 34 | <AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
|---|
| 35 | </PropertyGroup> |
|---|
| 36 | <ItemGroup> |
|---|
| 37 | <Reference Include="System" /> |
|---|
| 38 | <Reference Include="System.Core"> |
|---|
| 39 | <RequiredTargetFramework>3.5</RequiredTargetFramework> |
|---|
| 40 | </Reference> |
|---|
| 41 | <Reference Include="System.Data" /> |
|---|
| 42 | <Reference Include="System.Drawing" /> |
|---|
| 43 | <Reference Include="System.Windows.Forms" /> |
|---|
| 44 | <Reference Include="System.Xml" /> |
|---|
| 45 | </ItemGroup> |
|---|
| 46 | <ItemGroup> |
|---|
| 47 | <Compile Include="..\Version.cs"> |
|---|
| 48 | <Link>Version.cs</Link> |
|---|
| 49 | </Compile> |
|---|
| 50 | <Compile Include="AdvApi.cs" /> |
|---|
| 51 | <Compile Include="Localisation.cs" /> |
|---|
| 52 | <Compile Include="MsCorEEApi.cs" /> |
|---|
| 53 | <Compile Include="NtfsApi.cs" /> |
|---|
| 54 | <Compile Include="ShellApi.cs" /> |
|---|
| 55 | <Compile Include="StreamInfo.cs" /> |
|---|
| 56 | <Compile Include="KernelApi.cs" /> |
|---|
| 57 | <Compile Include="File.cs" /> |
|---|
| 58 | <Compile Include="UxThemeApi.cs" /> |
|---|
| 59 | <Compile Include="VolumeInfo.cs" /> |
|---|
| 60 | <Compile Include="NetApi.cs" /> |
|---|
| 61 | <Compile Include="NTApi.cs" /> |
|---|
| 62 | <Compile Include="Properties\AssemblyInfo.cs" /> |
|---|
| 63 | <Compile Include="UserApi.cs" /> |
|---|
| 64 | <Compile Include="WintrustApi.cs" /> |
|---|
| 65 | </ItemGroup> |
|---|
| 66 | <ItemGroup> |
|---|
| 67 | <CodeAnalysisDictionary Include="..\CustomDictionary.xml"> |
|---|
| 68 | <Link>CustomDictionary.xml</Link> |
|---|
| 69 | </CodeAnalysisDictionary> |
|---|
| 70 | </ItemGroup> |
|---|
| 71 | <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> |
|---|
| 72 | <!-- To modify your build process, add your task inside one of the targets below and uncomment it. |
|---|
| 73 | Other similar extension points exist, see Microsoft.Common.targets. |
|---|
| 74 | <Target Name="BeforeBuild"> |
|---|
| 75 | </Target> |
|---|
| 76 | <Target Name="AfterBuild"> |
|---|
| 77 | </Target> |
|---|
| 78 | --> |
|---|
| 79 | <PropertyGroup> |
|---|
| 80 | <PreBuildEvent>call $(SolutionDir)UpdateVersions.bat "$(SolutionDir)\" "$(SolutionDir)Version.cs.in" "$(SolutionDir)Version.cs" |
|---|
| 81 | </PreBuildEvent> |
|---|
| 82 | </PropertyGroup> |
|---|
| 83 | </Project> |
|---|