X Tutup
Skip to content

Commit f9d8a40

Browse files
authored
Remove duplicate .NET includes
1 parent 2375e98 commit f9d8a40

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/runtime/Python.Runtime.15.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" />
32
<PropertyGroup>
43
<TargetFrameworks>net40;netstandard2.0</TargetFrameworks>
54
<Platforms>AnyCPU</Platforms>
@@ -61,6 +60,9 @@
6160
<DebugType>portable</DebugType>
6261
</PropertyGroup>
6362

63+
<PropertyGroup Condition=" '$(Configuration)' == 'Debug'">
64+
<DefineConstants Condition="'$(CustomDefineConstants)' == ''">$(DefineConstants);PYTHON3;$(Python3Version);$(PythonMonoDefineConstants)</DefineConstants>
65+
</PropertyGroup>
6466
<PropertyGroup Condition=" '$(Configuration)' == 'ReleaseMono'">
6567
<DefineConstants Condition="'$(CustomDefineConstants)' == ''">$(DefineConstants);PYTHON2;$(Python2Version);$(PythonMonoDefineConstants)</DefineConstants>
6668
</PropertyGroup>
@@ -118,8 +120,6 @@
118120
<Reference Include="Microsoft.CSharp" />
119121
</ItemGroup>
120122

121-
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />
122-
123123
<PropertyGroup>
124124
<TargetAssembly>$(TargetPath)</TargetAssembly>
125125
<TargetAssemblyPdb>$(TargetDir)$(TargetName).pdb</TargetAssemblyPdb>

0 commit comments

Comments
 (0)
X Tutup