Skip to content

Commit

Permalink
updated project signing config (#516)
Browse files Browse the repository at this point in the history
  • Loading branch information
mizrael authored Jan 24, 2024
1 parent e5b8160 commit f2d59be
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
<SignAssembly>false</SignAssembly>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@
See https://github.com/microsoft/PowerApps-Tooling/releases for the latest release notes.
</PackageReleaseNotes>
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>../../35MSSharedLib1024.snk</AssemblyOriginatorKeyFile>
<PublicSign>true</PublicSign>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<!-- Workaround for version range https://github.com/NuGet/Home/issues/11842 -->
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
Expand All @@ -36,8 +39,17 @@
<PackageReference Include="YamlDotNet" Version="$(YamlDotNetVersion)" />
</ItemGroup>

<ItemGroup>
<InternalsVisibleTo Include="Microsoft.PowerPlatform.PowerApps.Persistence.Tests" />
<ItemGroup Condition="'$(GitExists)' == true">
<PackageReference Include="MinVer" Version="2.3.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>

<Target Name="PALT" AfterTargets="MinVer">
<PropertyGroup>
<AssemblyVersion>$(MinVer)</AssemblyVersion>
</PropertyGroup>
</Target>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace Microsoft.PowerPlatform.PowerApps.Persistence.Models;

internal static class BuiltInTemplatesUris
public static class BuiltInTemplatesUris
{
public const string Screen = "http://microsoft.com/appmagic/screen#screen";
public const string Button = "http://microsoft.com/appmagic/button#button";
Expand Down

0 comments on commit f2d59be

Please sign in to comment.