-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathSign.Core.csproj
More file actions
53 lines (47 loc) · 2.45 KB
/
Sign.Core.csproj
File metadata and controls
53 lines (47 loc) · 2.45 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<IsShipping>true</IsShipping>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AzureSign.Core" PrivateAssets="analyzers;build;compile;contentfiles" />
<PackageReference Include="Microsoft.Dynamics.BusinessCentral.Sip.Main" />
<PackageReference Include="Microsoft.Extensions.Azure" />
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" />
<PackageReference Include="Microsoft.Extensions.FileSystemGlobbing" />
<PackageReference Include="Microsoft.Extensions.Logging" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" PrivateAssets="analyzers;build;compile;contentfiles" />
<PackageReference Include="NuGet.Packaging" />
<PackageReference Include="NuGet.Protocol" />
<PackageReference Include="System.Security.Cryptography.Pkcs" PrivateAssets="analyzers;build;compile;contentfiles" />
<PackageReference Include="System.Security.Cryptography.Xml" PrivateAssets="analyzers;build;compile;contentfiles" />
<PackageReference Include="System.Text.Json" PrivateAssets="analyzers;build;compile;contentfiles" />
<PackageReference Include="WixToolset.Dtf.Compression.Cab" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="sign" />
<InternalsVisibleTo Include="Sign.Cli.Test" />
<InternalsVisibleTo Include="Sign.Core.Test" />
<InternalsVisibleTo Include="Sign.SignatureProviders.CertificateStore" />
<InternalsVisibleTo Include="Sign.SignatureProviders.CertificateStore.Test" />
<InternalsVisibleTo Include="Sign.SignatureProviders.KeyVault" />
<InternalsVisibleTo Include="Sign.SignatureProviders.KeyVault.Test" />
<InternalsVisibleTo Include="Sign.SignatureProviders.TrustedSigning" />
<InternalsVisibleTo Include="Sign.SignatureProviders.TrustedSigning.Test" />
<InternalsVisibleTo Include="Sign.TestInfrastructure" />
</ItemGroup>
<ItemGroup>
<Compile Update="Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>