Skip to content
This repository has been archived by the owner on Jun 22, 2023. It is now read-only.

Commit

Permalink
Building changes for Windows CE project
Browse files Browse the repository at this point in the history
- Removed unused references.
- Changed deploy directory to not include "Net35CF" suffix.
- Changed output path to match another projects.
- Change to sign assembly.
- Updated assembly version.
  • Loading branch information
Fabrício Godoy committed Oct 27, 2016
1 parent 9311a86 commit 9a4eae3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 deletions.
17 changes: 10 additions & 7 deletions GeoAPI.Net35CF/GeoAPI.Net35CF.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,19 @@
<PlatformFamilyName>WindowsCE</PlatformFamilyName>
<PlatformID>E2BECB1F-8C8C-41ba-B736-9BE7D946A398</PlatformID>
<OSVersion>5.0</OSVersion>
<DeployDirSuffix>GeoAPI.Net35CF</DeployDirSuffix>
<DeployDirSuffix>GeoAPI</DeployDirSuffix>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<NativePlatformName>Windows CE</NativePlatformName>
<FormFactorID>
</FormFactorID>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\geoapi.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<OutputPath>$(SolutionDir)$(Configuration)\$(TargetFrameworkIdentifier)$(TargetFrameworkVersion)\$(PlatformFamilyName)\</OutputPath>
<DefineConstants>DEBUG;TRACE;$(PlatformFamilyName)</DefineConstants>
<NoStdLib>true</NoStdLib>
<NoConfig>true</NoConfig>
Expand All @@ -35,7 +37,7 @@
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<OutputPath>$(SolutionDir)$(Configuration)\$(TargetFrameworkVersion)\$(PlatformFamilyName)\</OutputPath>
<DefineConstants>TRACE;$(PlatformFamilyName)</DefineConstants>
<NoStdLib>true</NoStdLib>
<NoConfig>true</NoConfig>
Expand All @@ -48,10 +50,6 @@
<Reference Include="mscorlib" />
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\GeoAPI.NetCore\Consts.cs">
Expand Down Expand Up @@ -334,6 +332,11 @@
<Link>ValueParser.cs</Link>
</Compile>
</ItemGroup>
<ItemGroup>
<None Include="..\geoapi.snk">
<Link>geoapi.snk</Link>
</None>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CompactFramework.CSharp.targets" />
<ProjectExtensions>
<VisualStudio>
Expand Down
4 changes: 2 additions & 2 deletions GeoAPI.NetCore/Consts.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
internal static class Consts
{
public const string Version = "1.7.4";
public const string Version = "1.7.5";
public const string Title = "GeoAPI";
public const string Description = "GeoAPI Version that matches NTS v.1.14";
public const string Company = "NetTopologySuite - Team";
Expand All @@ -25,7 +25,7 @@ internal static class Consts
public const string Guid = "eef37cab-4f83-4366-8533-3d7c16b449c7";
#elif WindowsCE
public const string Product = "GeoAPI.Net35CF";
public const string Guid = "8CE966F8-D4FD-4437-A79C-314D9632384A";
public const string Guid = "8ce966f8-d4fd-4437-a79c-314d9632384a";
#elif PCL
public const string Product = "GeoAPI.PCL";
#endif
Expand Down

0 comments on commit 9a4eae3

Please sign in to comment.