-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCommon.csproj
More file actions
34 lines (34 loc) · 1.82 KB
/
Common.csproj
File metadata and controls
34 lines (34 loc) · 1.82 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<PackageId>ReFlex.Core.Common</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>1.0.0</Version>
<Product>ReFlex.Core</Product>
<AssemblyName>ReFlex.Core.Common</AssemblyName>
<RootNamespace>ReFlex.Core.Common</RootNamespace>
<Platforms>x64;ARM64;AnyCPU</Platforms>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<TargetFrameworks>net8.0;netstandard2.1</TargetFrameworks>
<Configurations>Debug;Release;CI</Configurations>
<AssemblyVersion>0.9.9</AssemblyVersion>
<FileVersion>0.9.9</FileVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeCoverage" Version="17.13.0" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.9" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="9.0.4" />
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
</ItemGroup>
<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>
</Project>