Skip to content

Commit

Permalink
fix appsync tool version (#2580)
Browse files Browse the repository at this point in the history
  • Loading branch information
jennyf19 authored Nov 13, 2023
1 parent 9fa0c90 commit 665645c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 14 deletions.
8 changes: 6 additions & 2 deletions tools/app-provisioning-tool/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
<Project>
<Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../../'))" />
<!-- <Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../../'))" /> -->
<PropertyGroup>
<TargetFrameworks>net7.0</TargetFrameworks>
<SignAssembly>True</SignAssembly>
<Version>1.1.1</Version>
<Nullable>enable</Nullable>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>../../../build/MSAL.snk</AssemblyOriginatorKeyFile>
<EnablePackageValidation>false</EnablePackageValidation>
<RootNamespace>Microsoft.Identity.App</RootNamespace>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net7.0</TargetFrameworks>
<Nullable>enable</Nullable>
<RootNamespace>Microsoft.Identity.App</RootNamespace>
<OutputType>Library</OutputType>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>../../../build/MSAL.snk</AssemblyOriginatorKeyFile>

<IsPackable>false</IsPackable>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,9 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<Version>1.1.1</Version>
<TargetFrameworks>net7.0</TargetFrameworks>
<Nullable>enable</Nullable>
<RootNamespace>Microsoft.Identity.App</RootNamespace>

<PackAsTool>true</PackAsTool>
<ToolCommandName>msidentity-app-sync</ToolCommandName>
<PackageOutputPath>./nupkg</PackageOutputPath>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>../../../build/MSAL.snk</AssemblyOriginatorKeyFile>
<!-- Copyright needs to be in the form of © not (c) to be compliant -->
<Title>Microsoft identity platform auto-sync app registration tool</Title>
<Authors>Microsoft</Authors>
Expand Down

0 comments on commit 665645c

Please sign in to comment.