-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathNetworking.csproj
More file actions
41 lines (39 loc) · 1.86 KB
/
Copy pathNetworking.csproj
File metadata and controls
41 lines (39 loc) · 1.86 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<PackageId>ReFlex.Core.Networking</PackageId>
<Authors>Mathias Müller</Authors>
<Copyright>Copyright © 2021-2025</Copyright>
<Company>
GTV - Gesellschaft fuer Technische Visualistik mbH, Dresden
Hochschule fuer Technik und Wirtschaft Dresden, Dresden
</Company>
<Version>0.9.9</Version>
<AssemblyVersion>0.9.9</AssemblyVersion>
<FileVersion>0.9.9</FileVersion>
<Product>ReFlex.Core</Product>
<AssemblyName>ReFlex.Core.Networking</AssemblyName>
<RootNamespace>ReFlex.Core.Networking</RootNamespace>
<Platforms>x64;ARM64;AnyCPU</Platforms>
<TargetFramework>net8.0</TargetFramework>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<Configurations>Debug;Release;CI</Configurations>
</PropertyGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent" Condition=" '$(Configuration)' != 'CI' ">
<Exec Command="XCOPY "$(OutDir)*.*" "$(ProjectDir)..\..\..\export\lib" /S /Y /I" Condition=" '$(OS)' == 'Windows_NT' " />
<Exec Command="mkdir -p "../../../export/lib" && cp -r "$(OutDir)" "../../../export/lib"" Condition=" '$(OS)' != 'Windows_NT' " />
</Target>
<ItemGroup>
<PackageReference Include="Microsoft.CodeCoverage" Version="18.0.1" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="NLog" Version="6.1.4" />
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
<PackageReference Include="WatsonTcp" Version="6.0.12" />
<PackageReference Include="websocketsharp.core">
<Version>1.0.1</Version>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Common\Common.csproj" />
</ItemGroup>
</Project>