Skip to content

Commit

Permalink
Move utils to eng
Browse files Browse the repository at this point in the history
  • Loading branch information
Lamparter committed Nov 27, 2024
1 parent 57ebcae commit 84321ca
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Build.proj
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@

<RootDir>$(MSBuildThisFileDirectory)</RootDir>
<Solution>$(RootDir)IronPython.sln</Solution>
<UtilDir>$(RootDir)utils</UtilDir>
<ReferenceDir>$(RootDir)utils\References</ReferenceDir>
<UtilDir>$(RootDir)eng\utils</UtilDir>
<ReferenceDir>$(RootDir)eng\utils\References</ReferenceDir>
<BinDir>$(RootDir)bin</BinDir>
<BuildSysDir>$(RootDir)eng</BuildSysDir>
</PropertyGroup>
Expand Down
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
<!-- These are normally set by Build.proj, except when building from VS. -->
<RootDir Condition=" '$(RootDir)' == '' ">$(MSBuildThisFileDirectory)</RootDir>
<BuildSysDir Condition=" '$(BuildSysDir)' == '' ">$(RootDir)eng</BuildSysDir>
<ReferenceDir Condition=" '$(ReferenceDir)' == '' ">$(RootDir)utils\References</ReferenceDir>
<ReferenceDir Condition=" '$(ReferenceDir)' == '' ">$(RootDir)eng\utils\References</ReferenceDir>

<Mono Condition=" '$(Mono)' == '' AND '$(MSBuildRuntimeType)' == 'Mono' ">true</Mono>

<!-- The following two lines prevent csc.rsp and Microsoft.NETFramework.props from adding
additional assembly references. -->
<NoConfig>true</NoConfig>
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/core/IronPython.Modules/IronPython.Modules.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<ItemGroup Condition=" '$(IsFullFramework)' == 'true' ">
<Reference Include="Mono.Posix" Version="4.0.0">
<Private>True</Private>
<HintPath>..\..\..\utils\References\Mono.Posix.dll</HintPath>
<HintPath>..\..\..\eng\utils\References\Mono.Posix.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup Condition=" '$(IsFullFramework)' != 'true' ">
Expand Down
2 changes: 1 addition & 1 deletion src/core/IronPython/IronPython.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<ItemGroup Condition=" '$(IsFullFramework)' == 'true' ">
<Reference Include="Mono.Posix" Version="4.0.0">
<Private>True</Private>
<HintPath>..\..\..\utils\References\Mono.Posix.dll</HintPath>
<HintPath>..\..\..\eng\utils\References\Mono.Posix.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup Condition=" '$(IsFullFramework)' != 'true' ">
Expand Down
4 changes: 2 additions & 2 deletions src/platforms/IronPython.Compiler/IronPython.Compiler.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@

<ItemGroup>
<StageItem Include="$(TargetDir)\IKVM.Reflection.dll" />
<StageItem Include="$(RootDir)utils\References\IKVM\IKVM.Reflection.License.txt" />
<StageItem Include="$(RootDir)eng\utils\References\IKVM\IKVM.Reflection.License.txt" />
</ItemGroup>

<ItemGroup>
<Reference Include="IKVM.Reflection" CopyLocal="true">
<HintPath>..\..\..\utils\References\IKVM\IKVM.Reflection.dll</HintPath>
<HintPath>..\..\..\eng\utils\References\IKVM\IKVM.Reflection.dll</HintPath>
</Reference>
<Reference Include="System.Windows.Forms" />
</ItemGroup>
Expand Down

0 comments on commit 84321ca

Please sign in to comment.