Skip to content

Commit

Permalink
64-bit only
Browse files Browse the repository at this point in the history
Snip is now 64-bit only.
  • Loading branch information
David Rudie committed Apr 2, 2018
1 parent 518be13 commit e68ae97
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 14 deletions.
10 changes: 8 additions & 2 deletions Snip.sln
Original file line number Diff line number Diff line change
@@ -1,24 +1,30 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.21005.1
# Visual Studio 15
VisualStudioVersion = 15.0.26430.12
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Snip", "Snip\Snip.csproj", "{F3261080-FE82-40DA-8595-DD3A138CF7E5}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{F3261080-FE82-40DA-8595-DD3A138CF7E5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F3261080-FE82-40DA-8595-DD3A138CF7E5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F3261080-FE82-40DA-8595-DD3A138CF7E5}.Debug|x64.ActiveCfg = Debug|x64
{F3261080-FE82-40DA-8595-DD3A138CF7E5}.Debug|x64.Build.0 = Debug|x64
{F3261080-FE82-40DA-8595-DD3A138CF7E5}.Debug|x86.ActiveCfg = Debug|x86
{F3261080-FE82-40DA-8595-DD3A138CF7E5}.Debug|x86.Build.0 = Debug|x86
{F3261080-FE82-40DA-8595-DD3A138CF7E5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F3261080-FE82-40DA-8595-DD3A138CF7E5}.Release|Any CPU.Build.0 = Release|Any CPU
{F3261080-FE82-40DA-8595-DD3A138CF7E5}.Release|x64.ActiveCfg = Release|x64
{F3261080-FE82-40DA-8595-DD3A138CF7E5}.Release|x64.Build.0 = Release|x64
{F3261080-FE82-40DA-8595-DD3A138CF7E5}.Release|x86.ActiveCfg = Release|x86
{F3261080-FE82-40DA-8595-DD3A138CF7E5}.Release|x86.Build.0 = Release|x86
EndGlobalSection
Expand Down
42 changes: 30 additions & 12 deletions Snip/Snip.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,25 @@
<PropertyGroup>
<StartupObject />
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x64\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x64</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
<OutputPath>bin\x64\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x64</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="Microsoft.CSharp" />
Expand Down Expand Up @@ -148,17 +167,6 @@
<ItemGroup>
<None Include="Resources\Snip.ico" />
</ItemGroup>
<ItemGroup>
<COMReference Include="iTunesLib">
<Guid>{9E93C96F-CF0D-43F6-8BA8-B807A3370712}</Guid>
<VersionMajor>1</VersionMajor>
<VersionMinor>13</VersionMinor>
<Lcid>0</Lcid>
<WrapperTool>tlbimp</WrapperTool>
<Isolated>False</Isolated>
<EmbedInteropTypes>True</EmbedInteropTypes>
</COMReference>
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include=".NETFramework,Version=v4.0">
<Visible>False</Visible>
Expand Down Expand Up @@ -198,7 +206,17 @@
<Content Include="Resources\Strings.de-CH.txt" />
<Content Include="Resources\Strings.de-DE.txt" />
</ItemGroup>
<ItemGroup />
<ItemGroup>
<COMReference Include="iTunesLib">
<Guid>{9E93C96F-CF0D-43F6-8BA8-B807A3370712}</Guid>
<VersionMajor>1</VersionMajor>
<VersionMinor>13</VersionMinor>
<Lcid>0</Lcid>
<WrapperTool>tlbimp</WrapperTool>
<Isolated>False</Isolated>
<EmbedInteropTypes>True</EmbedInteropTypes>
</COMReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PostBuildEvent>"$(ProjectDir)ResgenAllTheThings.cmd" "$(ProjectDir)" "$(TargetDir)"</PostBuildEvent>
Expand Down

0 comments on commit e68ae97

Please sign in to comment.