-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
51 lines (45 loc) · 2.48 KB
/
Copy pathDirectory.Build.props
File metadata and controls
51 lines (45 loc) · 2.48 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
42
43
44
45
46
47
48
49
50
51
<Project>
<PropertyGroup>
<Version>0.9.1</Version>
<Authors>Daniel Biehl <daniel.biehl@imbus.de></Authors>
<Product>PlatynUI</Product>
<Company>imbus</Company>
<Copyright>2024 Daniel Biehl <daniel.biehl@imbus.de></Copyright>
<Description>PlatynUI is a cross-platform UI testing framework</Description>
<RepositoryUrl>https://github.com/imbus/robotframework-PlatynUI</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<RepositoryRoot>$(MSBuildThisFileDirectory)</RepositoryRoot>
<PackageReleaseNotes>https://github.com/imbus/robotframework-PlatynUI/blob/main/CHANGELOG.md</PackageReleaseNotes>
<!-- <PackageIcon>packageIcon.png</PackageIcon> -->
<!-- <PackageIconFullPath>$(MSBuildThisFileDirectory)packageIcon.png</PackageIconFullPath> -->
<LicenseFullPath>$(MSBuildThisFileDirectory)LICENSE.txt</LicenseFullPath>
<PackageProjectUrl>https://github.com/imbus/robotframework-PlatynUI</PackageProjectUrl>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<RollForward>LatestMinor</RollForward>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<ArtifactsPath>$(MSBuildThisFileDirectory)artifacts</ArtifactsPath>
</PropertyGroup>
<PropertyGroup>
<IsLinux>$([System.OperatingSystem]::IsLinux().toString().ToLower())</IsLinux>
<IsWindows>$([System.OperatingSystem]::IsWindows().toString().ToLower())</IsWindows>
<IsMacOS>$([System.OperatingSystem]::IsMacOS().toString().ToLower())</IsMacOS>
</PropertyGroup>
<PropertyGroup>
<IncludeMacOSPlatform
Condition=" '$(IsMacOS)' == 'true' or '$(RuntimeIdentifier)' == 'osx-arm64' or '$(RuntimeIdentifier)' == 'osx-x64' ">
true</IncludeMacOSPlatform>
<IncludeMacOSPlatform>$([System.String]::Copy('$(IncludeMacOSPlatform)').Trim())</IncludeMacOSPlatform>
<IncludeLinuxPlatform
Condition=" '$(IsLinux)' == 'true' or '$(RuntimeIdentifier)' == 'linux-x64' or '$(RuntimeIdentifier)' == 'linux-arm64' ">
true</IncludeLinuxPlatform>
<IncludeLinuxPlatform>$([System.String]::Copy('$(IncludeLinuxPlatform)').Trim())</IncludeLinuxPlatform>
<IncludeWindowsPlatform
Condition=" '$(IsWindows)' == 'true' or '$(RuntimeIdentifier)' == 'win-x64' or '$(RuntimeIdentifier)' == 'win-arm64' ">
true</IncludeWindowsPlatform>
<IncludeWindowsPlatform>$([System.String]::Copy('$(IncludeWindowsPlatform)').Trim())</IncludeWindowsPlatform>
</PropertyGroup>
</Project>