-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathtestengine.module.mda.csproj
More file actions
58 lines (48 loc) · 2.03 KB
/
testengine.module.mda.csproj
File metadata and controls
58 lines (48 loc) · 2.03 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
<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: Model Driven App (MDA) 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>
<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" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Microsoft.PowerApps.TestEngine\Microsoft.PowerApps.TestEngine.csproj" />
</ItemGroup>
<ItemGroup>
<MySourceFiles Include="..\..\bin\$(configuration)\testengine.module.mda\testengine.module.mda.dll" />
</ItemGroup>
</Project>