Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit f11eaf2

Browse files
committed
Kinda need these on top
1 parent 63dda8d commit f11eaf2

File tree

5 files changed

+4
-12
lines changed

5 files changed

+4
-12
lines changed

common/build.targets

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<!-- Build flags -->
4-
<PropertyGroup>
5-
<SolutionType Condition="'$(SolutionName)' == 'GitHub.Unity.OctokitDebugging'">OctokitDebugging</SolutionType>
6-
<BuildType Condition="Exists('$(SolutionDir)\script\src\MetricsService.cs')">Internal</BuildType>
7-
8-
<UnityDir Condition="$(UnityDir) == '' and Exists('$(SolutionDir)\script\lib\UnityEditor.dll')">$(SolutionDir)\script\lib\</UnityDir>
9-
<UnityDir Condition="$(UnityDir) == '' and Exists('$(SolutionDir)\lib\UnityEditor.dll')">$(SolutionDir)\lib\</UnityDir>
10-
<UnityDir Condition="$(UnityDir) == '' and Exists('C:\Program Files (x86)\Unity\Editor\Data\Managed\UnityEditor.dll')">C:\Program Files (x86)\Unity\Editor\Data\Managed\</UnityDir>
11-
<UnityDir Condition="$(UnityDir) == '' and Exists('\Applications\Unity\Unity.app\Contents\Managed\UnityEditor.dll')">\Applications\Unity\Unity.app\Contents\Managed\</UnityDir>
12-
<BuildConfig Condition=" '$(BuildConfig)' == '' ">Debug</BuildConfig>
13-
</PropertyGroup>
14-
153
<!-- Common assembly properties (versioning) -->
164
<ItemGroup>
175
<Compile Include="$(SolutionDir)common\SolutionInfo.cs">

src/GitHub.Api/GitHub.Api.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
</NuGetPackageImportStamp>
1919
<OutputPath>..\UnityExtension\Assets\Editor\build\</OutputPath>
2020
</PropertyGroup>
21+
<Import Project="..\..\common\properties.props" />
2122
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2223
<DebugSymbols>true</DebugSymbols>
2324
<DebugType>full</DebugType>

src/UnityExtension/Assets/Editor/GitHub.Unity/GitHub.Unity.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
<OutputPath>$(SolutionDir)\unity\TestProject\Assets\Editor\</OutputPath>
1515
<IntermediateOutputPath>..\..\..\obj\</IntermediateOutputPath>
1616
</PropertyGroup>
17+
<Import Project="..\..\..\..\..\common\properties.props" />
1718
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1819
<DebugSymbols>true</DebugSymbols>
1920
<DebugType>full</DebugType>

src/tests/IntegrationTests/IntegrationTests.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
<TargetFrameworkProfile />
1515
<OutputPath>$(SolutionDir)build\$(AssemblyName)</OutputPath>
1616
</PropertyGroup>
17+
<Import Project="..\..\..\common\properties.props" />
1718
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1819
<DebugSymbols>true</DebugSymbols>
1920
<DebugType>full</DebugType>

src/tests/UnitTests/UnitTests.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
<TargetFrameworkProfile />
1515
<OutputPath>$(SolutionDir)build\$(AssemblyName)</OutputPath>
1616
</PropertyGroup>
17+
<Import Project="..\..\..\common\properties.props" />
1718
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1819
<PlatformTarget>AnyCPU</PlatformTarget>
1920
<DebugSymbols>true</DebugSymbols>

0 commit comments

Comments
 (0)