Skip to content

Commit 565ba1d

Browse files
committed
Merge pull request #128 from ParsePlatform/gogo.consistent-build-script
Consistent Release dir
2 parents 317087d + 2c60612 commit 565ba1d

File tree

3 files changed

+25
-31
lines changed

3 files changed

+25
-31
lines changed

Parse.nuspec

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,15 @@
4040
<file src="Parse\bin\Release\Parse.xml" target="lib\wpa81" />
4141

4242
<!-- Xamarin Android -->
43-
<file src="Parse\bin\Release\Parse.Android\Parse.Android.dll" target="lib\MonoAndroid" />
44-
<file src="Parse\bin\Release\Parse.Android\Parse.Android.xml" target="lib\MonoAndroid" />
43+
<file src="Parse\bin\Release\Android\Parse.Android.dll" target="lib\MonoAndroid" />
44+
<file src="Parse\bin\Release\Android\Parse.Android.xml" target="lib\MonoAndroid" />
4545

4646
<!-- Xamarin iOS -->
47-
<file src="Parse\bin\Release\Parse.iOS\Parse.iOS.dll" target="lib\MonoTouch10" />
48-
<file src="Parse\bin\Release\Parse.iOS\Parse.iOS.xml" target="lib\MonoTouch10" />
47+
<file src="Parse\bin\Release\iOS\Parse.iOS.dll" target="lib\MonoTouch10" />
48+
<file src="Parse\bin\Release\iOS\Parse.iOS.xml" target="lib\MonoTouch10" />
4949

5050
<!-- Xamarin iOS Unified -->
51-
<file src="Parse\bin\Release\Parse.iOS\Parse.iOS.dll" target="lib\Xamarin.iOS10" />
52-
<file src="Parse\bin\Release\Parse.iOS\Parse.iOS.xml" target="lib\Xamarin.iOS10" />
51+
<file src="Parse\bin\Release\iOS\Parse.iOS.dll" target="lib\Xamarin.iOS10" />
52+
<file src="Parse\bin\Release\iOS\Parse.iOS.xml" target="lib\Xamarin.iOS10" />
5353
</files>
5454
</package>

Parse/Parse.Android.csproj

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@
3232
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
3333
<DebugType>pdbonly</DebugType>
3434
<Optimize>true</Optimize>
35-
<OutputPath>bin\Release\Parse.Android\</OutputPath>
35+
<OutputPath>bin\Release\Android\</OutputPath>
3636
<DefineConstants>TRACE;MONO;ANDROID</DefineConstants>
3737
<ErrorReport>prompt</ErrorReport>
3838
<WarningLevel>4</WarningLevel>
3939
<AndroidLinkMode>SdkOnly</AndroidLinkMode>
4040
<AndroidUseSharedRuntime>false</AndroidUseSharedRuntime>
41-
<DocumentationFile>bin\Release\Parse.Android\Parse.Android.xml</DocumentationFile>
41+
<DocumentationFile>bin\Release\Android\Parse.Android.xml</DocumentationFile>
4242
</PropertyGroup>
4343
<ItemGroup>
4444
<Reference Include="Microsoft.CSharp" />
@@ -49,10 +49,9 @@
4949
<Reference Include="System.Xml.Linq" />
5050
<Reference Include="System.Xml" />
5151
</ItemGroup>
52-
5352
<!-- Used for setting excluded files -->
5453
<PropertyGroup>
55-
<ExcludedPlatformSpecificSourceFilesString>
54+
<ExcludedPlatformSpecificSourceFilesString>
5655
**\iOS\**;
5756
**\NetFx45\**;
5857
**\Phone\**;
@@ -62,13 +61,11 @@
6261
</ExcludedPlatformSpecificSourceFilesString>
6362
</PropertyGroup>
6463
<ItemGroup>
65-
<!-- Assembly info, etc. -->
66-
<Compile Include="Properties\*.cs" Exclude="Properties\Settings.Designer.cs" />
67-
68-
<Compile Include="Internal\**\*.cs" Exclude="$(ExcludedPlatformSpecificSourceFilesString)" />
69-
<Compile Include="Public\**\*.cs" Exclude="$(ExcludedPlatformSpecificSourceFilesString)" />
64+
<!-- Assembly info, etc. -->
65+
<Compile Include="Properties\*.cs" Exclude="Properties\Settings.Designer.cs" />
66+
<Compile Include="Internal\**\*.cs" Exclude="$(ExcludedPlatformSpecificSourceFilesString)" />
67+
<Compile Include="Public\**\*.cs" Exclude="$(ExcludedPlatformSpecificSourceFilesString)" />
7068
</ItemGroup>
71-
7269
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
7370
<Import Project="$(SolutionDir)\.nuget\nuget.targets" Condition="Exists('$(SolutionDir)\.nuget\nuget.targets')" />
7471
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
@@ -79,4 +76,4 @@
7976
</Target>
8077
-->
8178
<ItemGroup />
82-
</Project>
79+
</Project>

Parse/Parse.iOS.csproj

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,14 @@
5454
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhone' ">
5555
<DebugType>none</DebugType>
5656
<Optimize>True</Optimize>
57-
<OutputPath>bin\Release\Parse.iOS\</OutputPath>
57+
<OutputPath>bin\Release\iOS\</OutputPath>
5858
<ErrorReport>prompt</ErrorReport>
5959
<WarningLevel>4</WarningLevel>
6060
<ConsolePause>False</ConsolePause>
6161
<CodesignKey>iPhone Developer</CodesignKey>
6262
<AssemblyName>Parse.iOS</AssemblyName>
6363
<DefineConstants>MONO;IOS</DefineConstants>
64-
<DocumentationFile>bin\Release\Parse.iOS\Parse.iOS.xml</DocumentationFile>
64+
<DocumentationFile>bin\Release\iOS\Parse.iOS.xml</DocumentationFile>
6565
</PropertyGroup>
6666
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Ad-Hoc|iPhone' ">
6767
<DebugType>none</DebugType>
@@ -102,26 +102,23 @@
102102
<WarningLevel>4</WarningLevel>
103103
<Optimize>false</Optimize>
104104
</PropertyGroup>
105-
106-
<!-- Used for setting excluded files -->
107-
<PropertyGroup>
105+
<!-- Used for setting excluded files -->
106+
<PropertyGroup>
108107
<ExcludedPlatformSpecificSourceFilesString>
109108
**\Android\**;
110109
**\NetFx45\**;
111110
**\Phone\**;
112111
**\Unity\**;
113112
**\WinRT\**;
114113
**\SettingsStorage\**;
115-
</ExcludedPlatformSpecificSourceFilesString>
116-
</PropertyGroup>
114+
</ExcludedPlatformSpecificSourceFilesString>
115+
</PropertyGroup>
117116
<ItemGroup>
118-
<!-- Assembly info, etc. -->
119-
<Compile Include="Properties\*.cs" Exclude="Properties\Settings.Designer.cs" />
120-
121-
<Compile Include="Internal\**\*.cs" Exclude="$(ExcludedPlatformSpecificSourceFilesString)" />
122-
<Compile Include="Public\**\*.cs" Exclude="$(ExcludedPlatformSpecificSourceFilesString)" />
117+
<!-- Assembly info, etc. -->
118+
<Compile Include="Properties\*.cs" Exclude="Properties\Settings.Designer.cs" />
119+
<Compile Include="Internal\**\*.cs" Exclude="$(ExcludedPlatformSpecificSourceFilesString)" />
120+
<Compile Include="Public\**\*.cs" Exclude="$(ExcludedPlatformSpecificSourceFilesString)" />
123121
</ItemGroup>
124-
125122
<ItemGroup>
126123
<Reference Include="System" />
127124
<Reference Include="System.Xml" />
@@ -132,4 +129,4 @@
132129
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.CSharp.targets" />
133130
<Import Project="$(SolutionDir)\.nuget\nuget.targets" Condition="Exists('$(SolutionDir)\.nuget\nuget.targets')" />
134131
<ItemGroup />
135-
</Project>
132+
</Project>

0 commit comments

Comments
 (0)