-
Notifications
You must be signed in to change notification settings - Fork 305
Expand file tree
/
Copy pathSharpMap.csproj
More file actions
57 lines (46 loc) · 3.47 KB
/
SharpMap.csproj
File metadata and controls
57 lines (46 loc) · 3.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="$(SolutionDir)SharpMap.Common.props" />
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Product>SharpMap Engine</Product>
<Copyright>Copyright 2006 Morten Nielsen, Copyright 2008-$([System.DateTime]::UtcNow.Year) SharpMap - Team</Copyright>
<PackageTags>SharpMap GIS Map GeoSpatial</PackageTags>
<Description>This package contains the core components of SharpMap.</Description>
<!--<EnableApiCompat>true</EnableApiCompat>-->
<NoWarn>1701;1702;2100;2235</NoWarn>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<None Remove="Styles\DefaultSymbol.png" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Styles\DefaultSymbol.png" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Common.Logging" Version="3.4.1" />
<PackageReference Include="Common.Logging.Core" Version="3.4.1" />
<PackageReference Include="GeoAPI.CoordinateSystems" Version="1.7.5" />
<PackageReference Include="NetTopologySuite.Core" Version="1.15.3" />
<PackageReference Include="System.Drawing.Common" Version="4.6.0" />
<PackageReference Include="System.Data.SqlClient" Version="4.7.0" />
<PackageReference Include="System.Drawing.Primitives" Version="4.3.0" />
<PackageReference Include="System.Memory" Version="4.5.3" />
</ItemGroup>
<ItemGroup Condition=" '$(EnableApiCompat)' == 'true' ">
<PackageReference Include="Microsoft.DotNet.ApiCompat" Version="5.0.0-beta.20162.3" PrivateAssets="All" />
<PackageDownload Include="SharpMap" Version="[1.1.0]" PrivateAssets="All" />
<ResolvedMatchingContract Include="$(NugetPackageRoot)sharpmap\1.1.0\lib\net40-client\SharpMap.dll" />
</ItemGroup>
<!--
<PropertyGroup>
<DriveSeperator>$(SolutionDir.SubString(1,1))</DriveSeperator>
</PropertyGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Message Importance="high" Text="$(SolutionDir)SharedAssemblyVersion.cs exists: $([System.IO.File]::Exists('$(SolutionDir)SharedAssemblyVersion.cs')) " />
<Message Importance="high" Text="$(SolutionDir)SharedAssemblyVersion.cs: $([System.IO.File]::GetLastWriteTime('$(SolutionDir)SharedAssemblyVersion.cs').Ticks) " Condition=" $([System.IO.File]::Exists('$(SolutionDir)SharedAssemblyVersion.cs')) " />
<Message Importance="high" Text="$(SolutionDir)SharpMap.Common.props : $([System.IO.File]::GetLastWriteTime('$(SolutionDir)SharpMap.Common.props').Ticks)" />
<Message Importance="high" Text="Condition: $([System.IO.File]::GetLastWriteTime('$(SolutionDir)SharedAssemblyVersion.cs').Ticks) < $([System.IO.File]::GetLastWriteTime('$(SolutionDir)SharpMap.Common.props').Ticks)" Condition=" $([System.IO.File]::Exists('$(SolutionDir)SharedAssemblyVersion.cs')) " />
<Exec Condition=" !$([System.IO.File]::Exists('$(SolutionDir)SharedAssemblyVersion.cs')) OR 
 $([System.IO.File]::GetLastWriteTime('$(SolutionDir)SharedAssemblyVersion.cs').Ticks) < $([System.IO.File]::GetLastWriteTime('$(SolutionDir)SharpMap.Common.props').Ticks) " Command="$(SolutionDir.SubString(0, 2))
cd "$(SolutionDir)"
"$(MSBuildBinPath)\msbuild" SharpMap.targets /t:Version
cd "$(ProjectDir)"" />
</Target>
-->
</Project>