aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2021-03-16 16:02:09 -0700
committerRob Mensching <rob@firegiant.com>2021-03-16 16:04:02 -0700
commit4e3c12a45cb91828ac94963129495033a4402136 (patch)
tree236300aa740317bc4310bcac0db709b6da343265
parentd056d00e1e1111b6ef68c57f1f03ef6843204723 (diff)
downloadwix-4e3c12a45cb91828ac94963129495033a4402136.tar.gz
wix-4e3c12a45cb91828ac94963129495033a4402136.tar.bz2
wix-4e3c12a45cb91828ac94963129495033a4402136.zip
Include dependency on System.IO.FileSystem.AccessControl
-rw-r--r--src/WixToolset.Core.Native/WixToolset.Core.Native.csproj2
-rw-r--r--src/WixToolset.Core.Native/WixToolset.Core.Native.nuspec4
2 files changed, 5 insertions, 1 deletions
diff --git a/src/WixToolset.Core.Native/WixToolset.Core.Native.csproj b/src/WixToolset.Core.Native/WixToolset.Core.Native.csproj
index 94ab812a..079e9d93 100644
--- a/src/WixToolset.Core.Native/WixToolset.Core.Native.csproj
+++ b/src/WixToolset.Core.Native/WixToolset.Core.Native.csproj
@@ -35,6 +35,8 @@
35 35
36 <ItemGroup> 36 <ItemGroup>
37 <PackageReference Include="WixToolset.Data" Version="4.0.*" /> 37 <PackageReference Include="WixToolset.Data" Version="4.0.*" />
38
39 <!-- Warning: The version for System.IO.FileSystem.AccessControl must be kept in sync with WixToolset.Core.nuspec -->
38 <PackageReference Include="System.IO.FileSystem.AccessControl" Version="4.6.0" /> 40 <PackageReference Include="System.IO.FileSystem.AccessControl" Version="4.6.0" />
39 </ItemGroup> 41 </ItemGroup>
40 42
diff --git a/src/WixToolset.Core.Native/WixToolset.Core.Native.nuspec b/src/WixToolset.Core.Native/WixToolset.Core.Native.nuspec
index cbc4f1be..9e1fc72f 100644
--- a/src/WixToolset.Core.Native/WixToolset.Core.Native.nuspec
+++ b/src/WixToolset.Core.Native/WixToolset.Core.Native.nuspec
@@ -12,7 +12,9 @@
12 <projectUrl>$projectUrl$</projectUrl> 12 <projectUrl>$projectUrl$</projectUrl>
13 <repository type="$repositorytype$" url="$repositoryurl$" commit="$repositorycommit$" /> 13 <repository type="$repositorytype$" url="$repositoryurl$" commit="$repositorycommit$" />
14 <dependencies> 14 <dependencies>
15 <group targetFramework="netstandard2.0" /> 15 <group targetFramework=".NETStandard2.0">
16 <dependency id="System.IO.FileSystem.AccessControl" version="4.6.0" exclude="Build,Analyzers" />
17 </group>
16 </dependencies> 18 </dependencies>
17 </metadata> 19 </metadata>
18 20