1- <?xml version =" 1.0" encoding =" utf-8" ?>
2- <Project ToolsVersion =" 14.0" DefaultTargets =" Build" xmlns =" http://schemas.microsoft.com/developer/msbuild/2003" >
3- <Import Project =" $(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition =" Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4- <PropertyGroup >
5- <Configuration Condition =" '$(Configuration)' == '' " >Debug</Configuration >
6- <Platform Condition =" '$(Platform)' == '' " >AnyCPU</Platform >
7- <ProjectGuid >{94755B6A-7E0D-40F9-A2ED-48FF0C0FEA2B}</ProjectGuid >
8- <OutputType >Exe</OutputType >
9- <AppDesignerFolder >Properties</AppDesignerFolder >
10- <RootNamespace >DriverTest</RootNamespace >
11- <AssemblyName >DriverTest</AssemblyName >
12- <TargetFrameworkVersion >v4.7.2</TargetFrameworkVersion >
13- <FileAlignment >512</FileAlignment >
14- <AutoGenerateBindingRedirects >true</AutoGenerateBindingRedirects >
15- <TargetFrameworkProfile />
16- </PropertyGroup >
17- <PropertyGroup Condition =" '$(Configuration)|$(Platform)' == 'Debug|x64'" >
18- <DebugSymbols >true</DebugSymbols >
19- <OutputPath >bin\x64\Debug\</OutputPath >
20- <DefineConstants >DEBUG;TRACE</DefineConstants >
21- <DebugType >full</DebugType >
22- <PlatformTarget >x64</PlatformTarget >
23- <LangVersion >7.3</LangVersion >
24- <ErrorReport >prompt</ErrorReport >
25- <Prefer32Bit >true</Prefer32Bit >
26- </PropertyGroup >
27- <PropertyGroup Condition =" '$(Configuration)|$(Platform)' == 'Release|x64'" >
28- <OutputPath >bin\x64\Release\</OutputPath >
29- <DefineConstants >TRACE</DefineConstants >
30- <Optimize >true</Optimize >
31- <DebugType >pdbonly</DebugType >
32- <PlatformTarget >x64</PlatformTarget >
33- <LangVersion >7.3</LangVersion >
34- <ErrorReport >prompt</ErrorReport >
35- <Prefer32Bit >true</Prefer32Bit >
36- </PropertyGroup >
37- <PropertyGroup Condition =" '$(Configuration)|$(Platform)' == 'Debug|x86'" >
38- <DebugSymbols >true</DebugSymbols >
39- <OutputPath >bin\x86\Debug\</OutputPath >
40- <DefineConstants >DEBUG;TRACE</DefineConstants >
41- <DebugType >full</DebugType >
42- <PlatformTarget >x86</PlatformTarget >
43- <LangVersion >7.3</LangVersion >
44- <ErrorReport >prompt</ErrorReport >
45- <Prefer32Bit >true</Prefer32Bit >
46- </PropertyGroup >
47- <PropertyGroup Condition =" '$(Configuration)|$(Platform)' == 'Release|x86'" >
48- <OutputPath >bin\x86\Release\</OutputPath >
49- <DefineConstants >TRACE</DefineConstants >
50- <Optimize >true</Optimize >
51- <DebugType >pdbonly</DebugType >
52- <PlatformTarget >x86</PlatformTarget >
53- <LangVersion >7.3</LangVersion >
54- <ErrorReport >prompt</ErrorReport >
55- <Prefer32Bit >true</Prefer32Bit >
56- </PropertyGroup >
57- <ItemGroup >
58- <Reference Include =" System" />
59- <Reference Include =" System.Core" />
60- <Reference Include =" System.Xml.Linq" />
61- <Reference Include =" System.Data.DataSetExtensions" />
62- <Reference Include =" Microsoft.CSharp" />
63- <Reference Include =" System.Data" />
64- <Reference Include =" System.Net.Http" />
65- <Reference Include =" System.Xml" />
66- </ItemGroup >
67- <ItemGroup >
68- <Compile Include =" Program.cs" />
69- <Compile Include =" Properties\AssemblyInfo.cs" />
70- <Compile Include =" TestPlcTag.cs" />
71- </ItemGroup >
72- <ItemGroup >
73- <None Include =" App.config" />
74- </ItemGroup >
75- <ItemGroup >
76- <ProjectReference Include =" ..\S7CommPlusDriver\S7CommPlusDriver.csproj" >
77- <Project >{781951d8-80de-4e2f-92ca-a5fef0059415}</Project >
78- <Name >S7CommPlusDriver</Name >
79- </ProjectReference >
80- </ItemGroup >
81- <Import Project =" $(MSBuildToolsPath)\Microsoft.CSharp.targets" />
82- <PropertyGroup >
83- <PostBuildEvent >xcopy /y /d "$(SolutionDir)S7CommPlusDriver\OpenSSL-dll-$(PlatformName)\*.dll" "$(ProjectDir)$(OutDir)"</PostBuildEvent >
84- </PropertyGroup >
85- <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
86- Other similar extension points exist, see Microsoft.Common.targets.
87- <Target Name="BeforeBuild">
88- </Target>
89- <Target Name="AfterBuild">
90- </Target>
91- -->
1+ <Project Sdk =" Microsoft.NET.Sdk" >
2+ <PropertyGroup >
3+ <TargetFramework >net8.0</TargetFramework >
4+ <OutputType >Exe</OutputType >
5+ <GenerateAssemblyInfo >false</GenerateAssemblyInfo >
6+ </PropertyGroup >
7+ <PropertyGroup Condition =" '$(Configuration)|$(Platform)' == 'Debug|x64'" >
8+ <OutputPath >bin\x64\Debug\</OutputPath >
9+ </PropertyGroup >
10+ <PropertyGroup Condition =" '$(Configuration)|$(Platform)' == 'Release|x64'" >
11+ <OutputPath >bin\x64\Release\</OutputPath >
12+ </PropertyGroup >
13+ <PropertyGroup Condition =" '$(Configuration)|$(Platform)' == 'Debug|x86'" >
14+ <OutputPath >bin\x86\Debug\</OutputPath >
15+ </PropertyGroup >
16+ <PropertyGroup Condition =" '$(Configuration)|$(Platform)' == 'Release|x86'" >
17+ <OutputPath >bin\x86\Release\</OutputPath >
18+ </PropertyGroup >
19+ <ItemGroup >
20+ <ProjectReference Include =" ..\S7CommPlusDriver\S7CommPlusDriver.csproj" />
21+ </ItemGroup >
22+ <ItemGroup >
23+ <PackageReference Include =" Microsoft.CSharp" Version =" 4.7.0" />
24+ <PackageReference Include =" System.Data.DataSetExtensions" Version =" 4.5.0" />
25+ </ItemGroup >
26+ <PropertyGroup >
27+ <AssemblyTitle >DriverTest</AssemblyTitle >
28+ <Description >S7CommPlusDriver Test</Description >
29+ <Product >DriverTest</Product >
30+ <Copyright >Copyright © 2023, Thomas Wiens</Copyright >
31+ <AssemblyVersion >0.1.0.0</AssemblyVersion >
32+ <FileVersion >0.1.0.0</FileVersion >
33+ <PlatformTarget >x86</PlatformTarget >
34+ </PropertyGroup >
9235</Project >
0 commit comments