-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDCalculator.csproj
More file actions
83 lines (83 loc) · 3.62 KB
/
DCalculator.csproj
File metadata and controls
83 lines (83 loc) · 3.62 KB
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
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="12.0" 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)' == '' ">x64</Platform>
<ProjectGuid>{72ABCEC5-A934-4414-940D-57A2A3F1AE0F}</ProjectGuid>
<OutputType>WinExe</OutputType>
<RootNamespace>DCalculator</RootNamespace>
<AssemblyName>DCalculator</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
<OutputPath>bin\$(OS)\$(Platform)\$(Configuration)\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<DebugSymbols>true</DebugSymbols>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x64</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
<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="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Deployment" />
<Reference Include="System.Drawing" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="CalculatorForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="CalculatorForm.Designer.cs">
<DependentUpon>CalculatorForm.cs</DependentUpon>
</Compile>
<Compile Include="CalculatorFormHandler.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="DCalculator.cs" />
<Compile Include="DCalculatorGenerated.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<EmbeddedResource Include="CalculatorForm.resx">
<DependentUpon>CalculatorForm.cs</DependentUpon>
</EmbeddedResource>
<None Include="builddcalculatorbinderoo.bat" />
<None Include="dcalculator.d" />
<None Include="builddcalculatorbinderoo.sh" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\binderoo\binderoo_host\dotnet\project\binderoo_host_dotnet.csproj">
<Project>{2bfec299-482c-4605-a861-6e4862eddf5d}</Project>
<Name>binderoo_host_dotnet</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PreBuildEvent Condition="'$(OS)' == 'Unix'">cd $(ProjectDir)
bash ./builddcalculatorbinderoo.sh $(Configuration) monodevelop</PreBuildEvent>
<PreBuildEvent Condition="'$(OS)' == 'Windows_NT'">cd $(ProjectDir)
call $(ProjectDir)builddcalculatorbinderoo.bat</PreBuildEvent>
</PropertyGroup>
</Project>