Target framework changed to 4.6.1
This commit is contained in:
parent
e212cb713f
commit
dc240e7ff9
@ -1,25 +1,21 @@
|
|||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<configuration>
|
<configuration>
|
||||||
<configSections>
|
<configSections>
|
||||||
<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
|
<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
<section name="PdfScribe.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
|
<section name="PdfScribe.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/>
|
||||||
</sectionGroup>
|
</sectionGroup>
|
||||||
</configSections>
|
</configSections>
|
||||||
<startup>
|
<startup>
|
||||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/>
|
||||||
</startup>
|
</startup>
|
||||||
<system.diagnostics>
|
<system.diagnostics>
|
||||||
<trace autoflush="true" />
|
<trace autoflush="true"/>
|
||||||
<sources>
|
<sources>
|
||||||
<source name="PdfScribe"
|
<source name="PdfScribe" switchName="PdfScribeAll">
|
||||||
switchName="PdfScribeAll" >
|
|
||||||
<listeners>
|
<listeners>
|
||||||
<add name="textwriterListener"
|
<add name="textwriterListener" type="System.Diagnostics.TextWriterTraceListener" initializeData="PdfScribe_trace.log" traceOutputOptions="DateTime"/>
|
||||||
type="System.Diagnostics.TextWriterTraceListener"
|
<remove name="Default"/>
|
||||||
initializeData="PdfScribe_trace.log"
|
<clear/> <!-- Remove the <clear /> element to turn on tracing output -->
|
||||||
traceOutputOptions="DateTime" />
|
|
||||||
<remove name="Default" />
|
|
||||||
<clear /> <!-- Remove the <clear /> element to turn on tracing output -->
|
|
||||||
</listeners>
|
</listeners>
|
||||||
</source>
|
</source>
|
||||||
</sources>
|
</sources>
|
||||||
|
@ -1,154 +1,160 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
|
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
|
||||||
<ProductVersion>8.0.30703</ProductVersion>
|
<ProductVersion>8.0.30703</ProductVersion>
|
||||||
<SchemaVersion>2.0</SchemaVersion>
|
<SchemaVersion>2.0</SchemaVersion>
|
||||||
<ProjectGuid>{09BB3AA3-96D3-4BA1-BCB3-4E17067F42B2}</ProjectGuid>
|
<ProjectGuid>{09BB3AA3-96D3-4BA1-BCB3-4E17067F42B2}</ProjectGuid>
|
||||||
<OutputType>WinExe</OutputType>
|
<OutputType>WinExe</OutputType>
|
||||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||||
<RootNamespace>PdfScribe</RootNamespace>
|
<RootNamespace>PdfScribe</RootNamespace>
|
||||||
<AssemblyName>PdfScribe</AssemblyName>
|
<AssemblyName>PdfScribe</AssemblyName>
|
||||||
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
|
||||||
<TargetFrameworkProfile>
|
<TargetFrameworkProfile>
|
||||||
</TargetFrameworkProfile>
|
</TargetFrameworkProfile>
|
||||||
<FileAlignment>512</FileAlignment>
|
<FileAlignment>512</FileAlignment>
|
||||||
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
|
||||||
<PlatformTarget>x86</PlatformTarget>
|
<PlatformTarget>x86</PlatformTarget>
|
||||||
<DebugSymbols>true</DebugSymbols>
|
<DebugSymbols>true</DebugSymbols>
|
||||||
<DebugType>full</DebugType>
|
<DebugType>full</DebugType>
|
||||||
<Optimize>false</Optimize>
|
<Optimize>false</Optimize>
|
||||||
<OutputPath>bin\Debug\</OutputPath>
|
<OutputPath>bin\Debug\</OutputPath>
|
||||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
</PropertyGroup>
|
<Prefer32Bit>false</Prefer32Bit>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
|
</PropertyGroup>
|
||||||
<PlatformTarget>x86</PlatformTarget>
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
|
||||||
<DebugType>pdbonly</DebugType>
|
<PlatformTarget>x86</PlatformTarget>
|
||||||
<Optimize>true</Optimize>
|
<DebugType>pdbonly</DebugType>
|
||||||
<OutputPath>bin\Release\</OutputPath>
|
<Optimize>true</Optimize>
|
||||||
<DefineConstants>TRACE</DefineConstants>
|
<OutputPath>bin\Release\</OutputPath>
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
<WarningLevel>4</WarningLevel>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
</PropertyGroup>
|
<WarningLevel>4</WarningLevel>
|
||||||
<PropertyGroup>
|
<Prefer32Bit>false</Prefer32Bit>
|
||||||
<StartupObject>PdfScribe.Program</StartupObject>
|
</PropertyGroup>
|
||||||
</PropertyGroup>
|
<PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
|
<StartupObject>PdfScribe.Program</StartupObject>
|
||||||
<DebugSymbols>true</DebugSymbols>
|
</PropertyGroup>
|
||||||
<OutputPath>bin\x64\Debug\</OutputPath>
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
|
||||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
<DebugSymbols>true</DebugSymbols>
|
||||||
<DebugType>full</DebugType>
|
<OutputPath>bin\x64\Debug\</OutputPath>
|
||||||
<PlatformTarget>x64</PlatformTarget>
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<DebugType>full</DebugType>
|
||||||
</PropertyGroup>
|
<PlatformTarget>x64</PlatformTarget>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
|
<ErrorReport>prompt</ErrorReport>
|
||||||
<OutputPath>bin\x64\Release\</OutputPath>
|
<Prefer32Bit>false</Prefer32Bit>
|
||||||
<DefineConstants>TRACE</DefineConstants>
|
</PropertyGroup>
|
||||||
<Optimize>true</Optimize>
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
|
||||||
<DebugType>pdbonly</DebugType>
|
<OutputPath>bin\x64\Release\</OutputPath>
|
||||||
<PlatformTarget>x64</PlatformTarget>
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<Optimize>true</Optimize>
|
||||||
</PropertyGroup>
|
<DebugType>pdbonly</DebugType>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
|
<PlatformTarget>x64</PlatformTarget>
|
||||||
<DebugSymbols>true</DebugSymbols>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
<OutputPath>bin\Debug\</OutputPath>
|
<Prefer32Bit>false</Prefer32Bit>
|
||||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
</PropertyGroup>
|
||||||
<DebugType>full</DebugType>
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
|
||||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
<DebugSymbols>true</DebugSymbols>
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<OutputPath>bin\Debug\</OutputPath>
|
||||||
</PropertyGroup>
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
|
<DebugType>full</DebugType>
|
||||||
<OutputPath>bin\Release\</OutputPath>
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
<DefineConstants>TRACE</DefineConstants>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
<Optimize>true</Optimize>
|
<Prefer32Bit>false</Prefer32Bit>
|
||||||
<DebugType>pdbonly</DebugType>
|
</PropertyGroup>
|
||||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<OutputPath>bin\Release\</OutputPath>
|
||||||
</PropertyGroup>
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
<PropertyGroup>
|
<Optimize>true</Optimize>
|
||||||
<ApplicationManifest>app.manifest</ApplicationManifest>
|
<DebugType>pdbonly</DebugType>
|
||||||
</PropertyGroup>
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
<PropertyGroup>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
<ApplicationIcon>Resources\AdobeIcon.ico</ApplicationIcon>
|
<Prefer32Bit>false</Prefer32Bit>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<PropertyGroup>
|
||||||
<Reference Include="System" />
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
||||||
<Reference Include="System.Data" />
|
</PropertyGroup>
|
||||||
<Reference Include="System.Drawing" />
|
<PropertyGroup>
|
||||||
<Reference Include="System.Windows.Forms" />
|
<ApplicationIcon>Resources\AdobeIcon.ico</ApplicationIcon>
|
||||||
<Reference Include="System.Xml" />
|
</PropertyGroup>
|
||||||
<Reference Include="Microsoft.CSharp" />
|
<ItemGroup>
|
||||||
<Reference Include="System.Core" />
|
<Reference Include="System" />
|
||||||
<Reference Include="System.Xml.Linq" />
|
<Reference Include="System.Data" />
|
||||||
<Reference Include="System.Data.DataSetExtensions" />
|
<Reference Include="System.Drawing" />
|
||||||
</ItemGroup>
|
<Reference Include="System.Windows.Forms" />
|
||||||
<ItemGroup>
|
<Reference Include="System.Xml" />
|
||||||
<Compile Include="..\Common\PdfScribeSharedAssemblyInfo.cs">
|
<Reference Include="Microsoft.CSharp" />
|
||||||
<Link>PdfScribeSharedAssemblyInfo.cs</Link>
|
<Reference Include="System.Core" />
|
||||||
</Compile>
|
<Reference Include="System.Xml.Linq" />
|
||||||
<Compile Include="GhostScript64.cs" />
|
<Reference Include="System.Data.DataSetExtensions" />
|
||||||
<Compile Include="NativeMethods.cs" />
|
</ItemGroup>
|
||||||
<Compile Include="Program.cs" />
|
<ItemGroup>
|
||||||
<Compile Include="Properties\AssemblyInfo.cs">
|
<Compile Include="..\Common\PdfScribeSharedAssemblyInfo.cs">
|
||||||
<SubType>Code</SubType>
|
<Link>PdfScribeSharedAssemblyInfo.cs</Link>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Properties\Resources.Designer.cs">
|
<Compile Include="GhostScript64.cs" />
|
||||||
<AutoGen>True</AutoGen>
|
<Compile Include="NativeMethods.cs" />
|
||||||
<DesignTime>True</DesignTime>
|
<Compile Include="Program.cs" />
|
||||||
<DependentUpon>Resources.resx</DependentUpon>
|
<Compile Include="Properties\AssemblyInfo.cs">
|
||||||
</Compile>
|
<SubType>Code</SubType>
|
||||||
<Compile Include="Properties\Settings.Designer.cs">
|
</Compile>
|
||||||
<AutoGen>True</AutoGen>
|
<Compile Include="Properties\Resources.Designer.cs">
|
||||||
<DependentUpon>Settings.settings</DependentUpon>
|
<AutoGen>True</AutoGen>
|
||||||
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
<DesignTime>True</DesignTime>
|
||||||
</Compile>
|
<DependentUpon>Resources.resx</DependentUpon>
|
||||||
<Compile Include="SetOutputFilename.cs">
|
</Compile>
|
||||||
<SubType>Form</SubType>
|
<Compile Include="Properties\Settings.Designer.cs">
|
||||||
</Compile>
|
<AutoGen>True</AutoGen>
|
||||||
<Compile Include="SetOutputFilename.Designer.cs">
|
<DependentUpon>Settings.settings</DependentUpon>
|
||||||
<DependentUpon>SetOutputFilename.cs</DependentUpon>
|
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Settings.cs" />
|
<Compile Include="SetOutputFilename.cs">
|
||||||
<EmbeddedResource Include="Properties\Resources.resx">
|
<SubType>Form</SubType>
|
||||||
<Generator>ResXFileCodeGenerator</Generator>
|
</Compile>
|
||||||
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
<Compile Include="SetOutputFilename.Designer.cs">
|
||||||
</EmbeddedResource>
|
<DependentUpon>SetOutputFilename.cs</DependentUpon>
|
||||||
<EmbeddedResource Include="SetOutputFilename.resx">
|
</Compile>
|
||||||
<DependentUpon>SetOutputFilename.cs</DependentUpon>
|
<Compile Include="Settings.cs" />
|
||||||
</EmbeddedResource>
|
<EmbeddedResource Include="Properties\Resources.resx">
|
||||||
<None Include="App.config">
|
<Generator>ResXFileCodeGenerator</Generator>
|
||||||
<SubType>Designer</SubType>
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
||||||
</None>
|
</EmbeddedResource>
|
||||||
<None Include="app.manifest" />
|
<EmbeddedResource Include="SetOutputFilename.resx">
|
||||||
<None Include="Properties\Settings.settings">
|
<DependentUpon>SetOutputFilename.cs</DependentUpon>
|
||||||
<Generator>SettingsSingleFileGenerator</Generator>
|
</EmbeddedResource>
|
||||||
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
|
<None Include="App.config">
|
||||||
</None>
|
<SubType>Designer</SubType>
|
||||||
<AppDesigner Include="Properties\" />
|
</None>
|
||||||
</ItemGroup>
|
<None Include="app.manifest" />
|
||||||
<ItemGroup>
|
<None Include="Properties\Settings.settings">
|
||||||
<None Include="Resources\AdobeIcon.ico" />
|
<Generator>SettingsSingleFileGenerator</Generator>
|
||||||
<Content Include="..\Lib\gsdll64.dll">
|
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
|
||||||
<Link>gsdll64.dll</Link>
|
</None>
|
||||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
<AppDesigner Include="Properties\" />
|
||||||
</Content>
|
</ItemGroup>
|
||||||
</ItemGroup>
|
<ItemGroup>
|
||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
<None Include="Resources\AdobeIcon.ico" />
|
||||||
<PropertyGroup>
|
<Content Include="..\Lib\gsdll64.dll">
|
||||||
<PostBuildEvent>
|
<Link>gsdll64.dll</Link>
|
||||||
</PostBuildEvent>
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
</PropertyGroup>
|
</Content>
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
|
<PropertyGroup>
|
||||||
|
<PostBuildEvent>
|
||||||
|
</PostBuildEvent>
|
||||||
|
</PropertyGroup>
|
||||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
<!-- 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.
|
Other similar extension points exist, see Microsoft.Common.targets.
|
||||||
<Target Name="BeforeBuild">
|
<Target Name="BeforeBuild">
|
||||||
</Target>
|
</Target>
|
||||||
<Target Name="AfterBuild">
|
<Target Name="AfterBuild">
|
||||||
</Target>
|
</Target>
|
||||||
-->
|
-->
|
||||||
</Project>
|
</Project>
|
143
PdfScribe/Properties/Resources.Designer.cs
generated
143
PdfScribe/Properties/Resources.Designer.cs
generated
@ -1,70 +1,73 @@
|
|||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
// <auto-generated>
|
// <auto-generated>
|
||||||
// This code was generated by a tool.
|
// This code was generated by a tool.
|
||||||
// Runtime Version:4.0.30319.1008
|
// Runtime Version:4.0.30319.42000
|
||||||
//
|
//
|
||||||
// Changes to this file may cause incorrect behavior and will be lost if
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
// the code is regenerated.
|
// the code is regenerated.
|
||||||
// </auto-generated>
|
// </auto-generated>
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
namespace PdfScribe.Properties {
|
namespace PdfScribe.Properties {
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A strongly-typed resource class, for looking up localized strings, etc.
|
/// A strongly-typed resource class, for looking up localized strings, etc.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
// This class was auto-generated by the StronglyTypedResourceBuilder
|
// This class was auto-generated by the StronglyTypedResourceBuilder
|
||||||
// class via a tool like ResGen or Visual Studio.
|
// class via a tool like ResGen or Visual Studio.
|
||||||
// To add or remove a member, edit your .ResX file then rerun ResGen
|
// To add or remove a member, edit your .ResX file then rerun ResGen
|
||||||
// with the /str option, or rebuild your VS project.
|
// with the /str option, or rebuild your VS project.
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")]
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||||
internal class Resources {
|
internal class Resources {
|
||||||
|
|
||||||
private static global::System.Resources.ResourceManager resourceMan;
|
private static global::System.Resources.ResourceManager resourceMan;
|
||||||
|
|
||||||
private static global::System.Globalization.CultureInfo resourceCulture;
|
private static global::System.Globalization.CultureInfo resourceCulture;
|
||||||
|
|
||||||
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
|
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
|
||||||
internal Resources() {
|
internal Resources() {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the cached ResourceManager instance used by this class.
|
/// Returns the cached ResourceManager instance used by this class.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||||
internal static global::System.Resources.ResourceManager ResourceManager {
|
internal static global::System.Resources.ResourceManager ResourceManager {
|
||||||
get {
|
get {
|
||||||
if (object.ReferenceEquals(resourceMan, null)) {
|
if (object.ReferenceEquals(resourceMan, null)) {
|
||||||
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("PdfScribe.Properties.Resources", typeof(Resources).Assembly);
|
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("PdfScribe.Properties.Resources", typeof(Resources).Assembly);
|
||||||
resourceMan = temp;
|
resourceMan = temp;
|
||||||
}
|
}
|
||||||
return resourceMan;
|
return resourceMan;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Overrides the current thread's CurrentUICulture property for all
|
/// Overrides the current thread's CurrentUICulture property for all
|
||||||
/// resource lookups using this strongly typed resource class.
|
/// resource lookups using this strongly typed resource class.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||||
internal static global::System.Globalization.CultureInfo Culture {
|
internal static global::System.Globalization.CultureInfo Culture {
|
||||||
get {
|
get {
|
||||||
return resourceCulture;
|
return resourceCulture;
|
||||||
}
|
}
|
||||||
set {
|
set {
|
||||||
resourceCulture = value;
|
resourceCulture = value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
internal static System.Drawing.Icon AdobeIcon {
|
/// <summary>
|
||||||
get {
|
/// Looks up a localized resource of type System.Drawing.Icon similar to (Icon).
|
||||||
object obj = ResourceManager.GetObject("AdobeIcon", resourceCulture);
|
/// </summary>
|
||||||
return ((System.Drawing.Icon)(obj));
|
internal static System.Drawing.Icon AdobeIcon {
|
||||||
}
|
get {
|
||||||
}
|
object obj = ResourceManager.GetObject("AdobeIcon", resourceCulture);
|
||||||
}
|
return ((System.Drawing.Icon)(obj));
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -1,117 +1,123 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
|
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
|
||||||
<ProductVersion>8.0.30703</ProductVersion>
|
<ProductVersion>8.0.30703</ProductVersion>
|
||||||
<SchemaVersion>2.0</SchemaVersion>
|
<SchemaVersion>2.0</SchemaVersion>
|
||||||
<ProjectGuid>{1EAD8E9A-A123-4C37-B31E-AEE1354DF003}</ProjectGuid>
|
<ProjectGuid>{1EAD8E9A-A123-4C37-B31E-AEE1354DF003}</ProjectGuid>
|
||||||
<OutputType>Library</OutputType>
|
<OutputType>Library</OutputType>
|
||||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||||
<RootNamespace>PdfScribeCore</RootNamespace>
|
<RootNamespace>PdfScribeCore</RootNamespace>
|
||||||
<AssemblyName>PdfScribeCore</AssemblyName>
|
<AssemblyName>PdfScribeCore</AssemblyName>
|
||||||
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
|
||||||
<TargetFrameworkProfile>
|
<TargetFrameworkProfile>
|
||||||
</TargetFrameworkProfile>
|
</TargetFrameworkProfile>
|
||||||
<FileAlignment>512</FileAlignment>
|
<FileAlignment>512</FileAlignment>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
|
||||||
<PlatformTarget>x86</PlatformTarget>
|
<PlatformTarget>x86</PlatformTarget>
|
||||||
<DebugSymbols>true</DebugSymbols>
|
<DebugSymbols>true</DebugSymbols>
|
||||||
<DebugType>full</DebugType>
|
<DebugType>full</DebugType>
|
||||||
<Optimize>false</Optimize>
|
<Optimize>false</Optimize>
|
||||||
<OutputPath>bin\Debug\</OutputPath>
|
<OutputPath>bin\Debug\</OutputPath>
|
||||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
</PropertyGroup>
|
<Prefer32Bit>false</Prefer32Bit>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
|
</PropertyGroup>
|
||||||
<PlatformTarget>x86</PlatformTarget>
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
|
||||||
<DebugType>pdbonly</DebugType>
|
<PlatformTarget>x86</PlatformTarget>
|
||||||
<Optimize>true</Optimize>
|
<DebugType>pdbonly</DebugType>
|
||||||
<OutputPath>bin\Release\</OutputPath>
|
<Optimize>true</Optimize>
|
||||||
<DefineConstants>TRACE</DefineConstants>
|
<OutputPath>bin\Release\</OutputPath>
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
<WarningLevel>4</WarningLevel>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
</PropertyGroup>
|
<WarningLevel>4</WarningLevel>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
|
<Prefer32Bit>false</Prefer32Bit>
|
||||||
<DebugSymbols>true</DebugSymbols>
|
</PropertyGroup>
|
||||||
<OutputPath>bin\x64\Debug\</OutputPath>
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
|
||||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
<DebugSymbols>true</DebugSymbols>
|
||||||
<DebugType>full</DebugType>
|
<OutputPath>bin\x64\Debug\</OutputPath>
|
||||||
<PlatformTarget>x64</PlatformTarget>
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<DebugType>full</DebugType>
|
||||||
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
|
<PlatformTarget>x64</PlatformTarget>
|
||||||
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
<CodeAnalysisFailOnMissingRules>false</CodeAnalysisFailOnMissingRules>
|
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
|
||||||
</PropertyGroup>
|
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
|
<CodeAnalysisFailOnMissingRules>false</CodeAnalysisFailOnMissingRules>
|
||||||
<OutputPath>bin\x64\Release\</OutputPath>
|
<Prefer32Bit>false</Prefer32Bit>
|
||||||
<DefineConstants>TRACE</DefineConstants>
|
</PropertyGroup>
|
||||||
<Optimize>true</Optimize>
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
|
||||||
<DebugType>pdbonly</DebugType>
|
<OutputPath>bin\x64\Release\</OutputPath>
|
||||||
<PlatformTarget>x64</PlatformTarget>
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<Optimize>true</Optimize>
|
||||||
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
|
<DebugType>pdbonly</DebugType>
|
||||||
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
|
<PlatformTarget>x64</PlatformTarget>
|
||||||
<CodeAnalysisFailOnMissingRules>false</CodeAnalysisFailOnMissingRules>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
</PropertyGroup>
|
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
|
||||||
<PropertyGroup />
|
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
|
<CodeAnalysisFailOnMissingRules>false</CodeAnalysisFailOnMissingRules>
|
||||||
<DebugSymbols>true</DebugSymbols>
|
<Prefer32Bit>false</Prefer32Bit>
|
||||||
<OutputPath>bin\Debug\</OutputPath>
|
</PropertyGroup>
|
||||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
<PropertyGroup />
|
||||||
<DebugType>full</DebugType>
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
|
||||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
<DebugSymbols>true</DebugSymbols>
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<OutputPath>bin\Debug\</OutputPath>
|
||||||
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||||
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
|
<DebugType>full</DebugType>
|
||||||
<CodeAnalysisFailOnMissingRules>false</CodeAnalysisFailOnMissingRules>
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
</PropertyGroup>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
|
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
|
||||||
<OutputPath>bin\Release\</OutputPath>
|
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
|
||||||
<DefineConstants>TRACE</DefineConstants>
|
<CodeAnalysisFailOnMissingRules>false</CodeAnalysisFailOnMissingRules>
|
||||||
<Optimize>true</Optimize>
|
<Prefer32Bit>false</Prefer32Bit>
|
||||||
<DebugType>pdbonly</DebugType>
|
</PropertyGroup>
|
||||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<OutputPath>bin\Release\</OutputPath>
|
||||||
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
|
<Optimize>true</Optimize>
|
||||||
</PropertyGroup>
|
<DebugType>pdbonly</DebugType>
|
||||||
<PropertyGroup>
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
<StartupObject />
|
<ErrorReport>prompt</ErrorReport>
|
||||||
</PropertyGroup>
|
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
|
||||||
<ItemGroup>
|
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
|
||||||
<Reference Include="Microsoft.VisualBasic" />
|
<Prefer32Bit>false</Prefer32Bit>
|
||||||
<Reference Include="PresentationCore" />
|
</PropertyGroup>
|
||||||
<Reference Include="PresentationFramework" />
|
<PropertyGroup>
|
||||||
<Reference Include="System" />
|
<StartupObject />
|
||||||
<Reference Include="System.Core" />
|
</PropertyGroup>
|
||||||
<Reference Include="System.Xml.Linq" />
|
<ItemGroup>
|
||||||
<Reference Include="System.Data.DataSetExtensions" />
|
<Reference Include="Microsoft.VisualBasic" />
|
||||||
<Reference Include="Microsoft.CSharp" />
|
<Reference Include="PresentationCore" />
|
||||||
<Reference Include="System.Data" />
|
<Reference Include="PresentationFramework" />
|
||||||
<Reference Include="System.Xml" />
|
<Reference Include="System" />
|
||||||
<Reference Include="WindowsBase" />
|
<Reference Include="System.Core" />
|
||||||
</ItemGroup>
|
<Reference Include="System.Xml.Linq" />
|
||||||
<ItemGroup>
|
<Reference Include="System.Data.DataSetExtensions" />
|
||||||
<Compile Include="..\Common\PdfScribeSharedAssemblyInfo.cs">
|
<Reference Include="Microsoft.CSharp" />
|
||||||
<Link>PdfScribeSharedAssemblyInfo.cs</Link>
|
<Reference Include="System.Data" />
|
||||||
</Compile>
|
<Reference Include="System.Xml" />
|
||||||
<Compile Include="PdfScribeInstaller.cs" />
|
<Reference Include="WindowsBase" />
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
</ItemGroup>
|
||||||
<Compile Include="NativeMethods.cs" />
|
<ItemGroup>
|
||||||
</ItemGroup>
|
<Compile Include="..\Common\PdfScribeSharedAssemblyInfo.cs">
|
||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
<Link>PdfScribeSharedAssemblyInfo.cs</Link>
|
||||||
<PropertyGroup>
|
</Compile>
|
||||||
<PostBuildEvent>
|
<Compile Include="PdfScribeInstaller.cs" />
|
||||||
</PostBuildEvent>
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
</PropertyGroup>
|
<Compile Include="NativeMethods.cs" />
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
|
<PropertyGroup>
|
||||||
|
<PostBuildEvent>
|
||||||
|
</PostBuildEvent>
|
||||||
|
</PropertyGroup>
|
||||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
<!-- 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.
|
Other similar extension points exist, see Microsoft.Common.targets.
|
||||||
<Target Name="BeforeBuild">
|
<Target Name="BeforeBuild">
|
||||||
</Target>
|
</Target>
|
||||||
<Target Name="AfterBuild">
|
<Target Name="AfterBuild">
|
||||||
</Target>
|
</Target>
|
||||||
-->
|
-->
|
||||||
</Project>
|
</Project>
|
@ -1,100 +1,107 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
|
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
|
||||||
<ProductVersion>8.0.30703</ProductVersion>
|
<ProductVersion>8.0.30703</ProductVersion>
|
||||||
<SchemaVersion>2.0</SchemaVersion>
|
<SchemaVersion>2.0</SchemaVersion>
|
||||||
<ProjectGuid>{E8679E1B-8C89-4201-97D5-7E43C5A486C9}</ProjectGuid>
|
<ProjectGuid>{E8679E1B-8C89-4201-97D5-7E43C5A486C9}</ProjectGuid>
|
||||||
<OutputType>Library</OutputType>
|
<OutputType>Library</OutputType>
|
||||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||||
<RootNamespace>PdfScribeInstallCustomAction</RootNamespace>
|
<RootNamespace>PdfScribeInstallCustomAction</RootNamespace>
|
||||||
<AssemblyName>PdfScribeInstallCustomAction</AssemblyName>
|
<AssemblyName>PdfScribeInstallCustomAction</AssemblyName>
|
||||||
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
|
||||||
<FileAlignment>512</FileAlignment>
|
<FileAlignment>512</FileAlignment>
|
||||||
<WixCATargetsPath Condition=" '$(WixCATargetsPath)' == '' ">$(MSBuildExtensionsPath)\Microsoft\WiX\v3.x\Wix.CA.targets</WixCATargetsPath>
|
<WixCATargetsPath Condition=" '$(WixCATargetsPath)' == '' ">$(MSBuildExtensionsPath)\Microsoft\WiX\v3.x\Wix.CA.targets</WixCATargetsPath>
|
||||||
</PropertyGroup>
|
<TargetFrameworkProfile />
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
|
</PropertyGroup>
|
||||||
<DebugSymbols>true</DebugSymbols>
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
|
||||||
<DebugType>full</DebugType>
|
<DebugSymbols>true</DebugSymbols>
|
||||||
<Optimize>false</Optimize>
|
<DebugType>full</DebugType>
|
||||||
<OutputPath>bin\Debug\</OutputPath>
|
<Optimize>false</Optimize>
|
||||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
<OutputPath>bin\Debug\</OutputPath>
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||||
<WarningLevel>4</WarningLevel>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
</PropertyGroup>
|
<WarningLevel>4</WarningLevel>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
|
<Prefer32Bit>false</Prefer32Bit>
|
||||||
<DebugType>pdbonly</DebugType>
|
</PropertyGroup>
|
||||||
<Optimize>true</Optimize>
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
|
||||||
<OutputPath>bin\Release\</OutputPath>
|
<DebugType>pdbonly</DebugType>
|
||||||
<DefineConstants>TRACE</DefineConstants>
|
<Optimize>true</Optimize>
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<OutputPath>bin\Release\</OutputPath>
|
||||||
<WarningLevel>4</WarningLevel>
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
</PropertyGroup>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
|
<WarningLevel>4</WarningLevel>
|
||||||
<DebugSymbols>true</DebugSymbols>
|
<Prefer32Bit>false</Prefer32Bit>
|
||||||
<OutputPath>bin\x64\Debug\</OutputPath>
|
</PropertyGroup>
|
||||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
|
||||||
<DebugType>full</DebugType>
|
<DebugSymbols>true</DebugSymbols>
|
||||||
<PlatformTarget>x64</PlatformTarget>
|
<OutputPath>bin\x64\Debug\</OutputPath>
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||||
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
|
<DebugType>full</DebugType>
|
||||||
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
|
<PlatformTarget>x64</PlatformTarget>
|
||||||
</PropertyGroup>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
|
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
|
||||||
<OutputPath>bin\x64\Release\</OutputPath>
|
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
|
||||||
<DefineConstants>TRACE</DefineConstants>
|
<Prefer32Bit>false</Prefer32Bit>
|
||||||
<Optimize>true</Optimize>
|
</PropertyGroup>
|
||||||
<DebugType>pdbonly</DebugType>
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
|
||||||
<PlatformTarget>x64</PlatformTarget>
|
<OutputPath>bin\x64\Release\</OutputPath>
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
|
<Optimize>true</Optimize>
|
||||||
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
|
<DebugType>pdbonly</DebugType>
|
||||||
</PropertyGroup>
|
<PlatformTarget>x64</PlatformTarget>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
|
<ErrorReport>prompt</ErrorReport>
|
||||||
<DebugSymbols>true</DebugSymbols>
|
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
|
||||||
<OutputPath>bin\Debug\</OutputPath>
|
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
|
||||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
<Prefer32Bit>false</Prefer32Bit>
|
||||||
<DebugType>full</DebugType>
|
</PropertyGroup>
|
||||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<DebugSymbols>true</DebugSymbols>
|
||||||
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
|
<OutputPath>bin\Debug\</OutputPath>
|
||||||
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||||
</PropertyGroup>
|
<DebugType>full</DebugType>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
<OutputPath>bin\Release\</OutputPath>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
<DefineConstants>TRACE</DefineConstants>
|
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
|
||||||
<Optimize>true</Optimize>
|
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
|
||||||
<DebugType>pdbonly</DebugType>
|
<Prefer32Bit>false</Prefer32Bit>
|
||||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
</PropertyGroup>
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
|
||||||
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
|
<OutputPath>bin\Release\</OutputPath>
|
||||||
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
</PropertyGroup>
|
<Optimize>true</Optimize>
|
||||||
<ItemGroup>
|
<DebugType>pdbonly</DebugType>
|
||||||
<Reference Include="System" />
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
<Reference Include="System.Core" />
|
<ErrorReport>prompt</ErrorReport>
|
||||||
<Reference Include="System.Xml.Linq" />
|
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
|
||||||
<Reference Include="Microsoft.CSharp" />
|
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
|
||||||
<Reference Include="System.Xml" />
|
<Prefer32Bit>false</Prefer32Bit>
|
||||||
<Reference Include="Microsoft.Deployment.WindowsInstaller" />
|
</PropertyGroup>
|
||||||
</ItemGroup>
|
<ItemGroup>
|
||||||
<ItemGroup>
|
<Reference Include="System" />
|
||||||
<Compile Include="CustomAction.cs" />
|
<Reference Include="System.Core" />
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
<Reference Include="System.Xml.Linq" />
|
||||||
<Compile Include="SessionWriterTraceListener.cs" />
|
<Reference Include="Microsoft.CSharp" />
|
||||||
<Content Include="CustomAction.config" />
|
<Reference Include="System.Xml" />
|
||||||
</ItemGroup>
|
<Reference Include="Microsoft.Deployment.WindowsInstaller" />
|
||||||
<ItemGroup>
|
</ItemGroup>
|
||||||
<ProjectReference Include="..\PdfScribeCore\PdfScribeCore.csproj">
|
<ItemGroup>
|
||||||
<Project>{1EAD8E9A-A123-4C37-B31E-AEE1354DF003}</Project>
|
<Compile Include="CustomAction.cs" />
|
||||||
<Name>PdfScribeCore</Name>
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
</ProjectReference>
|
<Compile Include="SessionWriterTraceListener.cs" />
|
||||||
</ItemGroup>
|
<Content Include="CustomAction.config" />
|
||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
</ItemGroup>
|
||||||
<Import Project="$(WixCATargetsPath)" />
|
<ItemGroup>
|
||||||
<PropertyGroup>
|
<ProjectReference Include="..\PdfScribeCore\PdfScribeCore.csproj">
|
||||||
<PostBuildEvent>
|
<Project>{1EAD8E9A-A123-4C37-B31E-AEE1354DF003}</Project>
|
||||||
</PostBuildEvent>
|
<Name>PdfScribeCore</Name>
|
||||||
</PropertyGroup>
|
</ProjectReference>
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
|
<Import Project="$(WixCATargetsPath)" />
|
||||||
|
<PropertyGroup>
|
||||||
|
<PostBuildEvent>
|
||||||
|
</PostBuildEvent>
|
||||||
|
</PropertyGroup>
|
||||||
</Project>
|
</Project>
|
Loading…
Reference in New Issue
Block a user