From 85b05ad7bc5ba6d7755957e4c6b1ba10c031c23b Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期三, 25 九月 2024 10:24:16 +0800 Subject: [PATCH] 1 --- SimuTools/SimuTools.csproj | 37 +++++++++++++++++++++++++++++++++++-- 1 files changed, 35 insertions(+), 2 deletions(-) diff --git a/SimuTools/SimuTools.csproj b/SimuTools/SimuTools.csproj index 41ab085..0cdd0b8 100644 --- a/SimuTools/SimuTools.csproj +++ b/SimuTools/SimuTools.csproj @@ -14,7 +14,7 @@ <TargetFrameworkProfile /> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> - <PlatformTarget>AnyCPU</PlatformTarget> + <PlatformTarget>x64</PlatformTarget> <DebugSymbols>true</DebugSymbols> <DebugType>full</DebugType> <Optimize>false</Optimize> @@ -32,6 +32,9 @@ <ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel> </PropertyGroup> + <PropertyGroup> + <StartupObject>SimuTools.Program</StartupObject> + </PropertyGroup> <ItemGroup> <Reference Include="gdalconst_csharp, Version=3.5.2.0, Culture=neutral, PublicKeyToken=db5a52b08dc5b321, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> @@ -45,6 +48,12 @@ <SpecificVersion>False</SpecificVersion> <HintPath>dlls\log4net4.dll</HintPath> </Reference> + <Reference Include="Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL"> + <SpecificVersion>False</SpecificVersion> + <HintPath>dlls\Newtonsoft.Json.dll</HintPath> + </Reference> + <Reference Include="ogr_csharp, Version=3.5.2.0, Culture=neutral, PublicKeyToken=db5a52b08dc5b321, processorArchitecture=MSIL" /> + <Reference Include="osr_csharp, Version=3.5.2.0, Culture=neutral, PublicKeyToken=db5a52b08dc5b321, processorArchitecture=MSIL" /> <Reference Include="System" /> <Reference Include="System.Configuration" /> <Reference Include="System.Core" /> @@ -58,6 +67,7 @@ <Reference Include="System.Xml" /> </ItemGroup> <ItemGroup> + <Compile Include="Domain\Args.cs" /> <Compile Include="Domain\Duration.cs" /> <Compile Include="Domain\Extension.cs" /> <Compile Include="Domain\Layer.cs" /> @@ -71,6 +81,7 @@ </Compile> <Compile Include="Program.cs" /> <Compile Include="Properties\AssemblyInfo.cs" /> + <Compile Include="Tools\GdalHelper.cs" /> <Compile Include="Tools\Handle.cs" /> <Compile Include="Tools\LogOut.cs" /> <EmbeddedResource Include="FrmMain.resx"> @@ -546,9 +557,12 @@ <DependentUpon>Settings.settings</DependentUpon> <DesignTimeSharedInput>True</DesignTimeSharedInput> </Compile> + <None Include="Tools\tiffConvert.py" /> </ItemGroup> <ItemGroup> - <None Include="App.config" /> + <None Include="App.config"> + <SubType>Designer</SubType> + </None> </ItemGroup> <ItemGroup> <Content Include="dlls\gdalconst_csharp.dll" /> @@ -556,10 +570,29 @@ <Content Include="dlls\gdal_csharp.dll" /> <Content Include="dlls\gdal_wrap.dll" /> <Content Include="dlls\log4net4.dll" /> + <Content Include="dlls\Newtonsoft.Json.dll" /> <Content Include="dlls\ogr_csharp.dll" /> <Content Include="dlls\ogr_wrap.dll" /> <Content Include="dlls\osr_csharp.dll" /> <Content Include="dlls\osr_wrap.dll" /> + <EmbeddedResource Include="ogr_csharp.dll"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </EmbeddedResource> + <EmbeddedResource Include="ogr_wrap.dll"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </EmbeddedResource> + <EmbeddedResource Include="osr_csharp.dll"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </EmbeddedResource> + <EmbeddedResource Include="osr_wrap.dll"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </EmbeddedResource> + <EmbeddedResource Include="gdalconst_wrap.dll"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </EmbeddedResource> + <EmbeddedResource Include="gdal_wrap.dll"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </EmbeddedResource> <EmbeddedResource Include="gdal-data\bag_template.xml"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </EmbeddedResource> -- Gitblit v1.9.3