Skip to content

Commit 91d57ec

Browse files
committed
some minor changes to the project files
1 parent d98438d commit 91d57ec

File tree

3 files changed

+22
-15
lines changed

3 files changed

+22
-15
lines changed
5.32 MB
Binary file not shown.

RevitPythonShell/RevitPythonShell.csproj

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
<UseApplicationTrust>false</UseApplicationTrust>
3333
<BootstrapperEnabled>true</BootstrapperEnabled>
3434
<TargetFrameworkProfile />
35-
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
3635
</PropertyGroup>
3736
<PropertyGroup>
3837
<!-- see: http://thebuildingcoder.typepad.com/blog/2013/06/processor-architecture-mismatch-warning.html -->
@@ -55,6 +54,9 @@
5554
<PropertyGroup Condition="'$(Configuration)' == 'Debug 2018'">
5655
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
5756
</PropertyGroup>
57+
<PropertyGroup Condition="'$(Configuration)' == 'Debug 2019'">
58+
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
59+
</PropertyGroup>
5860
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
5961
<DebugSymbols>true</DebugSymbols>
6062
<DebugType>full</DebugType>
@@ -157,6 +159,14 @@
157159
<HintPath>..\RequiredLibraries\Revit2018\RevitAPIUI.dll</HintPath>
158160
</Reference>
159161
</ItemGroup>
162+
<ItemGroup Condition="'$(Configuration)' == 'Debug 2019'">
163+
<Reference Include="RevitAPI">
164+
<HintPath>..\RequiredLibraries\Revit2019\RevitAPI.dll</HintPath>
165+
</Reference>
166+
<Reference Include="RevitAPIUI">
167+
<HintPath>..\RequiredLibraries\Revit2019\RevitAPIUI.dll</HintPath>
168+
</Reference>
169+
</ItemGroup>
160170
<ItemGroup>
161171
<Reference Include="ICSharpCode.AvalonEdit, Version=5.0.3.0, Culture=neutral, PublicKeyToken=9cc39be672370310, processorArchitecture=MSIL">
162172
<HintPath>..\packages\AvalonEdit.5.0.4\lib\Net40\ICSharpCode.AvalonEdit.dll</HintPath>
@@ -186,19 +196,6 @@
186196
<Reference Include="PythonConsoleControl">
187197
<HintPath>..\PythonConsoleControl\bin\Debug 2018\PythonConsoleControl.dll</HintPath>
188198
</Reference>
189-
<Reference Include="RevitAPI, Version=2014.0.0.0, Culture=neutral, processorArchitecture=AMD64">
190-
<SpecificVersion>False</SpecificVersion>
191-
<HintPath>..\RequiredLibraries\Revit2019\RevitAPI.dll</HintPath>
192-
<Private>False</Private>
193-
</Reference>
194-
<Reference Include="RevitAPIUI, Version=2014.0.0.0, Culture=neutral, processorArchitecture=AMD64">
195-
<SpecificVersion>False</SpecificVersion>
196-
<HintPath>..\RequiredLibraries\Revit2019\RevitAPIUI.dll</HintPath>
197-
<Private>False</Private>
198-
</Reference>
199-
<Reference Include="RpsRuntime">
200-
<HintPath>..\RpsRuntime\bin\Debug 2018\RpsRuntime.dll</HintPath>
201-
</Reference>
202199
<Reference Include="System" />
203200
<Reference Include="System.Core">
204201
<RequiredTargetFramework>3.5</RequiredTargetFramework>

RpsRuntime/RpsRuntime.csproj

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
<RootNamespace>RevitPythonShell.RpsRuntime</RootNamespace>
1010
<AssemblyName>RpsRuntime</AssemblyName>
1111
<FileAlignment>512</FileAlignment>
12-
<TargetFrameworkProfile />
1312
</PropertyGroup>
1413
<PropertyGroup>
1514
<!-- see: http://thebuildingcoder.typepad.com/blog/2013/06/processor-architecture-mismatch-warning.html -->
@@ -32,6 +31,9 @@
3231
<PropertyGroup Condition="'$(Configuration)' == 'Debug 2018'">
3332
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
3433
</PropertyGroup>
34+
<PropertyGroup Condition="'$(Configuration)' == 'Debug 2019'">
35+
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
36+
</PropertyGroup>
3537
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug 2014|AnyCPU'">
3638
<DebugSymbols>true</DebugSymbols>
3739
<OutputPath>bin\Debug 2014\</OutputPath>
@@ -115,6 +117,14 @@
115117
<HintPath>..\RequiredLibraries\Revit2018\RevitAPIUI.dll</HintPath>
116118
</Reference>
117119
</ItemGroup>
120+
<ItemGroup Condition="'$(Configuration)' == 'Debug 2019'">
121+
<Reference Include="RevitAPI">
122+
<HintPath>..\RequiredLibraries\Revit2019\RevitAPI.dll</HintPath>
123+
</Reference>
124+
<Reference Include="RevitAPIUI">
125+
<HintPath>..\RequiredLibraries\Revit2019\RevitAPIUI.dll</HintPath>
126+
</Reference>
127+
</ItemGroup>
118128
<ItemGroup>
119129
<Reference Include="ICSharpCode.AvalonEdit, Version=5.0.3.0, Culture=neutral, PublicKeyToken=9cc39be672370310, processorArchitecture=MSIL">
120130
<HintPath>..\packages\AvalonEdit.5.0.4\lib\Net40\ICSharpCode.AvalonEdit.dll</HintPath>

0 commit comments

Comments
 (0)