-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathtestengine.module.powerapps.portal.csproj
More file actions
66 lines (55 loc) · 2.29 KB
/
testengine.module.powerapps.portal.csproj
File metadata and controls
66 lines (55 loc) · 2.29 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Authors>Microsoft</Authors>
<Company>crmsdk,Microsoft</Company>
<Description>Alpha Release: Power Apps Portal browser PowerFx action MEF extension</Description>
<PackageReleaseNotes>
Notice:
This package is an ALPHA release. - Use at your own risk.
Intial Alpha release of Microsoft.PowerAppsTestEngine
</PackageReleaseNotes>
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<MinVerMinimumMajorMinor>1.0</MinVerMinimumMajorMinor>
<PowerFxVersion>1.3.0-build.*</PowerFxVersion>
</PropertyGroup>
<PropertyGroup>
<DebugType>portable</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<SignAssembly>true</SignAssembly>
<PublicSign>true</PublicSign>
<AssemblyOriginatorKeyFile>../../35MSSharedLib1024.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<SignAssembly>false</SignAssembly>
</PropertyGroup>
<ItemGroup>
<Compile Remove="obj\**" />
<EmbeddedResource Remove="obj\**" />
<None Remove="obj\**" />
</ItemGroup>
<ItemGroup>
<None Remove="PowerAppsPortalConnections.js" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="PowerAppsPortalConnections.js" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.0" />
<PackageReference Include="Microsoft.Playwright" Version="1.55.0" />
<PackageReference Include="Microsoft.PowerFx.Interpreter" Version="$(PowerFxVersion)" />
<PackageReference Include="System.ComponentModel.Composition" Version="5.0.0" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Microsoft.PowerApps.TestEngine\Microsoft.PowerApps.TestEngine.csproj" />
</ItemGroup>
<ItemGroup>
<MySourceFiles Include="..\..\bin\$(configuration)\testengine.module.powerapps.portal\testengine.module.powerapps.portal.dll" />
</ItemGroup>
</Project>