Skip to content

Commit

Permalink
Version 1.4: ArcGIS 10.6.1; Umstieg auf Visual Studio
Browse files Browse the repository at this point in the history
  • Loading branch information
peterschaer committed Mar 31, 2020
1 parent f0b4a93 commit f73bf3b
Show file tree
Hide file tree
Showing 7 changed files with 35 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
bin/*
obj/*
obj/*
.vs/*
2 changes: 1 addition & 1 deletion AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@
//
// You can specify all the values or you can use the default the Revision and
// Build Numbers by using the '*' as shown below:
[assembly: AssemblyVersion("1.3.*")]
[assembly: AssemblyVersion("1.4.*")]
18 changes: 17 additions & 1 deletion MXDReader.csproj
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="Current">
<PropertyGroup>
<ProjectGuid>{3FF32ACB-8926-46B5-8AD4-DA8FC4FF7AE8}</ProjectGuid>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
Expand All @@ -13,6 +13,13 @@
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<NoWin32Manifest>False</NoWin32Manifest>
<FileUpgradeFlags>
</FileUpgradeFlags>
<UpgradeBackupLocation>
</UpgradeBackupLocation>
<OldToolsVersion>2.0</OldToolsVersion>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<OutputPath>bin\Debug\</OutputPath>
Expand All @@ -38,6 +45,12 @@
<PlatformTarget>x86</PlatformTarget>
<FileAlignment>4096</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.Targets" />
<ItemGroup>
<Reference Include="ESRI.ArcGIS.Carto" />
Expand All @@ -54,4 +67,7 @@
<Compile Include="MXD.cs" />
<Compile Include="MXDReader.cs" />
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
</ItemGroup>
</Project>
Binary file modified MXDReader.doc
Binary file not shown.
Binary file modified MXDReader.pdf
Binary file not shown.
17 changes: 12 additions & 5 deletions MXDReader.sln
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@

Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
# SharpDevelop 2.2.1.2648
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29920.165
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MXDReader", "MXDReader.csproj", "{3FF32ACB-8926-46B5-8AD4-DA8FC4FF7AE8}"
EndProject
Global
Expand All @@ -10,9 +11,15 @@ Global
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{3FF32ACB-8926-46B5-8AD4-DA8FC4FF7AE8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3FF32ACB-8926-46B5-8AD4-DA8FC4FF7AE8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3FF32ACB-8926-46B5-8AD4-DA8FC4FF7AE8}.Release|Any CPU.Build.0 = Release|Any CPU
{3FF32ACB-8926-46B5-8AD4-DA8FC4FF7AE8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3FF32ACB-8926-46B5-8AD4-DA8FC4FF7AE8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3FF32ACB-8926-46B5-8AD4-DA8FC4FF7AE8}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {D4195C2A-8DED-4DFF-A457-2AE81CBF1D8F}
EndGlobalSection
EndGlobal
3 changes: 3 additions & 0 deletions app.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/></startup></configuration>

0 comments on commit f73bf3b

Please sign in to comment.