|
1 |
| -<!-- Copyright 2021 Yubico AB |
2 |
| -
|
3 |
| -Licensed under the Apache License, Version 2.0 (the "License"); |
4 |
| -you may not use this file except in compliance with the License. |
5 |
| -You may obtain a copy of the License at |
6 |
| -
|
7 |
| - http://www.apache.org/licenses/LICENSE-2.0 |
8 |
| -
|
9 |
| -Unless required by applicable law or agreed to in writing, software |
10 |
| -distributed under the License is distributed on an "AS IS" BASIS, |
11 |
| -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
12 |
| -See the License for the specific language governing permissions and |
13 |
| -limitations under the License. --> |
14 |
| - |
15 |
| -<Project Sdk="Microsoft.NET.Sdk"> |
16 |
| - <PropertyGroup> |
17 |
| - <!-- Assembly information--> |
18 |
| - <AssemblyName>Yubico.Core</AssemblyName> |
19 |
| - <RootNamespace></RootNamespace> |
20 |
| - |
21 |
| - <!-- Multi-target build --> |
22 |
| - <TargetFrameworks>netstandard2.0;netstandard2.1;net47</TargetFrameworks> |
23 |
| - <AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
24 |
| - |
25 |
| - <!-- Suppressed warnings--> |
26 |
| - <!-- NU5104 - We want to allow prerelease NuGet packages --> |
27 |
| - <NoWarn>@(NoWarn);NU5104</NoWarn> |
28 |
| - <Configurations>Debug;Release</Configurations> |
29 |
| - |
30 |
| - <!-- DocFX will throw a warning (which we set as an error) if it doesn't find a reference assembly. --> |
31 |
| - <ProduceReferenceAssembly>True</ProduceReferenceAssembly> |
32 |
| - |
33 |
| - <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> |
34 |
| - <PackageLicenseFile>LICENSE.txt</PackageLicenseFile> |
35 |
| - |
36 |
| - <!-- XML Documentation --> |
37 |
| - <GenerateDocumentationFile>true</GenerateDocumentationFile> |
38 |
| - |
39 |
| - <!-- NuGet properties --> |
40 |
| - <Description> |
41 |
| - Yubico.Core is a support library used by other .NET Yubico libraries. You should likely never need to consume this package directly, as it will be included with other libraries. |
42 |
| - </Description> |
43 |
| - <PackageIcon>yubico-circle-y-mark.png</PackageIcon> |
44 |
| - <PackageReadmeFile>README.md</PackageReadmeFile> |
45 |
| - <PublishRepositoryUrl>true</PublishRepositoryUrl> |
46 |
| - <EmbedUntrackedSources>true</EmbedUntrackedSources> |
47 |
| - <IncludeSymbols>true</IncludeSymbols> |
48 |
| - <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
49 |
| - <PackageReleaseNotes>https://github.com/Yubico/Yubico.NET.SDK/releases/latest</PackageReleaseNotes> |
50 |
| - |
51 |
| - <!-- StrongName signing --> |
52 |
| - <SignAssembly>true</SignAssembly> |
53 |
| - <AssemblyOriginatorKeyFile>..\..\Yubico.NET.SDK.snk</AssemblyOriginatorKeyFile> |
54 |
| - |
55 |
| - <DefineConstants Condition="'$(Configuration)' == 'Debug'">$(DefineConstants);ENABLE_SENSITIVE_LOG</DefineConstants> |
56 |
| - </PropertyGroup> |
57 |
| - |
58 |
| - <PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'"> |
59 |
| - <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> |
60 |
| - </PropertyGroup> |
61 |
| - |
62 |
| - <ItemGroup Label="Resource file definition"> |
63 |
| - |
64 |
| - <Compile Update="Resources\ExceptionMessages.Designer.cs"> |
65 |
| - <DesignTime>True</DesignTime> |
66 |
| - <AutoGen>True</AutoGen> |
67 |
| - <DependentUpon>ExceptionMessages.resx</DependentUpon> |
68 |
| - </Compile> |
69 |
| - |
70 |
| - <EmbeddedResource Update="Resources\ExceptionMessages.resx"> |
71 |
| - <Generator>ResXFileCodeGenerator</Generator> |
72 |
| - <LastGenOutput>ExceptionMessages.Designer.cs</LastGenOutput> |
73 |
| - <CustomToolNamespace>Yubico.Core</CustomToolNamespace> |
74 |
| - </EmbeddedResource> |
75 |
| - |
76 |
| - <None Include="..\..\LICENSE.txt" Pack="true" PackagePath="" /> |
77 |
| - <None Include="..\..\README.md" Pack="true" PackagePath="" /> |
78 |
| - <None Include="..\..\yubico-circle-y-mark.png" Pack="true" PackagePath="" /> |
79 |
| - <None Include="..\..\Yubico.NET.SDK.snk"> |
80 |
| - <Link>Yubico.NET.SDK.snk</Link> |
81 |
| - </None> |
82 |
| - </ItemGroup> |
83 |
| - |
84 |
| - <ItemGroup Label="Grouping HID code partial classes"> |
85 |
| - <Compile Update="Yubico\Core\Devices\Hid\HidCodeTranslator.ModHex.cs"> |
86 |
| - <DependentUpon>HidCodeTranslator.cs</DependentUpon> |
87 |
| - </Compile> |
88 |
| - <Compile Update="Yubico\Core\Devices\Hid\HidCodeTranslator.en_UK.cs"> |
89 |
| - <DependentUpon>HidCodeTranslator.cs</DependentUpon> |
90 |
| - </Compile> |
91 |
| - <Compile Update="Yubico\Core\Devices\Hid\HidCodeTranslator.en_US.cs"> |
92 |
| - <DependentUpon>HidCodeTranslator.cs</DependentUpon> |
93 |
| - </Compile> |
94 |
| - <Compile Update="Yubico\Core\Devices\Hid\HidCodeTranslator.de_DE.cs"> |
95 |
| - <DependentUpon>HidCodeTranslator.cs</DependentUpon> |
96 |
| - </Compile> |
97 |
| - <Compile Update="Yubico\Core\Devices\Hid\HidCodeTranslator.fr_FR.cs"> |
98 |
| - <DependentUpon>HidCodeTranslator.cs</DependentUpon> |
99 |
| - </Compile> |
100 |
| - <Compile Update="Yubico\Core\Devices\Hid\HidCodeTranslator.it_IT.cs"> |
101 |
| - <DependentUpon>HidCodeTranslator.cs</DependentUpon> |
102 |
| - </Compile> |
103 |
| - <Compile Update="Yubico\Core\Devices\Hid\HidCodeTranslator.es_US.cs"> |
104 |
| - <DependentUpon>HidCodeTranslator.cs</DependentUpon> |
105 |
| - </Compile> |
106 |
| - <Compile Update="Yubico\Core\Devices\Hid\HidCodeTranslator.sv_SE.cs"> |
107 |
| - <DependentUpon>HidCodeTranslator.cs</DependentUpon> |
108 |
| - </Compile> |
109 |
| - </ItemGroup> |
110 |
| - |
111 |
| - <ItemGroup> |
112 |
| - <PackageReference Include="Microsoft.Bcl.HashCode" Version="6.0.0" /> |
113 |
| - <PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="9.0.0"> |
114 |
| - <PrivateAssets>all</PrivateAssets> |
115 |
| - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
116 |
| - </PackageReference> |
117 |
| - <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" /> |
118 |
| - <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.2" /> |
119 |
| - <PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" /> |
120 |
| - <PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="8.0.0" /> |
121 |
| - <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" /> |
122 |
| - <!-- Before updating PolySharp, we should do some due dilligence on the update --> |
123 |
| - <PackageReference Include="PolySharp" Version="1.15.0" AllowUpdates="false"> |
124 |
| - <PrivateAssets>all</PrivateAssets> |
125 |
| - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
126 |
| - </PackageReference> |
127 |
| - <PackageReference Include="System.Memory" Version="4.5.5" /> |
128 |
| - <PackageReference Include="System.Runtime.InteropServices.RuntimeInformation" Version="4.3.0" /> |
129 |
| - <PackageReference Include="System.Security.Principal.Windows" Version="5.0.0" /> |
130 |
| - <!-- The wildcard version tag allows us to include the latest minor and pre-release versions --> |
131 |
| - <PackageReference Include="Yubico.NativeShims" Version="1.*-*" /> |
132 |
| - </ItemGroup> |
133 |
| - |
134 |
| - <ItemGroup Label="Expose internal test hooks to Unit Test projects"> |
135 |
| - |
136 |
| - <!-- Expose internal test hooks --> |
137 |
| - <AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> |
138 |
| - <_Parameter1>Yubico.Core.UnitTests,PublicKey=00240000048000001401000006020000002400005253413100080000010001003312c63e1417ad4652242148c599b55c50d3213c7610b4cc1f467b193bfb8d131de6686268a9db307fcef9efcd5e467483fe9015307e5d0cf9d2fd4df12f29a1c7a72e531d8811ca70f6c80c4aeb598c10bb7fc48742ab86aa7986b0ae9a2f4876c61e0b81eb38e5b549f1fc861c633206f5466bfde021cb08d094742922a8258b582c3bc029eab88c98d476dac6e6f60bc0016746293f5337c68b22e528931b6494acddf1c02b9ea3986754716a9f2a32c59ff3d97f1e35ee07ca2972b0269a4cde86f7b64f80e7c13152c0f84083b5cc4f06acc0efb4316ff3f08c79bc0170229007fb27c97fb494b22f9f7b07f45547e263a44d5a7fe7da6a945a5e47afc9</_Parameter1> |
139 |
| - </AssemblyAttribute> |
140 |
| - |
141 |
| - <AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> |
142 |
| - <_Parameter1>Yubico.YubiKey.IntegrationTests,PublicKey=00240000048000001401000006020000002400005253413100080000010001003312c63e1417ad4652242148c599b55c50d3213c7610b4cc1f467b193bfb8d131de6686268a9db307fcef9efcd5e467483fe9015307e5d0cf9d2fd4df12f29a1c7a72e531d8811ca70f6c80c4aeb598c10bb7fc48742ab86aa7986b0ae9a2f4876c61e0b81eb38e5b549f1fc861c633206f5466bfde021cb08d094742922a8258b582c3bc029eab88c98d476dac6e6f60bc0016746293f5337c68b22e528931b6494acddf1c02b9ea3986754716a9f2a32c59ff3d97f1e35ee07ca2972b0269a4cde86f7b64f80e7c13152c0f84083b5cc4f06acc0efb4316ff3f08c79bc0170229007fb27c97fb494b22f9f7b07f45547e263a44d5a7fe7da6a945a5e47afc9</_Parameter1> |
143 |
| - </AssemblyAttribute> |
144 |
| - |
145 |
| - <!-- Enable use of the Moq framework--> |
146 |
| - <AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> |
147 |
| - <_Parameter1>DynamicProxyGenAssembly2,PublicKey=0024000004800000940000000602000000240000525341310004000001000100c547cac37abd99c8db225ef2f6c8a3602f3b3606cc9891605d02baa56104f4cfc0734aa39b93bf7852f7d9266654753cc297e7d2edfe0bac1cdcf9f717241550e0a7b191195b7667bb4f64bcb8e2121380fd1d9d46ad2d92d2d15605093924cceaf74c4861eff62abf69b9291ed0a340e113be11e6a7d3113e92484cf7045cc7</_Parameter1> |
148 |
| - </AssemblyAttribute> |
149 |
| - |
150 |
| - </ItemGroup> |
151 |
| -</Project> |
| 1 | +<!-- Copyright 2021 Yubico AB |
| 2 | +
|
| 3 | +Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +you may not use this file except in compliance with the License. |
| 5 | +You may obtain a copy of the License at |
| 6 | +
|
| 7 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +
|
| 9 | +Unless required by applicable law or agreed to in writing, software |
| 10 | +distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +See the License for the specific language governing permissions and |
| 13 | +limitations under the License. --> |
| 14 | + |
| 15 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 16 | + <PropertyGroup> |
| 17 | + <!-- Assembly information--> |
| 18 | + <AssemblyName>Yubico.Core</AssemblyName> |
| 19 | + <RootNamespace></RootNamespace> |
| 20 | + |
| 21 | + <!-- Multi-target build --> |
| 22 | + <TargetFrameworks>netstandard2.0;netstandard2.1;net47</TargetFrameworks> |
| 23 | + <AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
| 24 | + |
| 25 | + <!-- Suppressed warnings--> |
| 26 | + <!-- NU5104 - We want to allow prerelease NuGet packages --> |
| 27 | + <NoWarn>@(NoWarn);NU5104</NoWarn> |
| 28 | + <Configurations>Debug;Release</Configurations> |
| 29 | + |
| 30 | + <!-- DocFX will throw a warning (which we set as an error) if it doesn't find a reference assembly. --> |
| 31 | + <ProduceReferenceAssembly>True</ProduceReferenceAssembly> |
| 32 | + |
| 33 | + <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> |
| 34 | + <PackageLicenseFile>LICENSE.txt</PackageLicenseFile> |
| 35 | + |
| 36 | + <!-- XML Documentation --> |
| 37 | + <GenerateDocumentationFile>true</GenerateDocumentationFile> |
| 38 | + |
| 39 | + <!-- NuGet properties --> |
| 40 | + <Description> |
| 41 | + Yubico.Core is a support library used by other .NET Yubico libraries. You should likely never need to consume this package directly, as it will be included with other libraries. |
| 42 | + </Description> |
| 43 | + <PackageIcon>yubico-circle-y-mark.png</PackageIcon> |
| 44 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 45 | + <PublishRepositoryUrl>true</PublishRepositoryUrl> |
| 46 | + <EmbedUntrackedSources>true</EmbedUntrackedSources> |
| 47 | + <IncludeSymbols>true</IncludeSymbols> |
| 48 | + <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
| 49 | + <PackageReleaseNotes>https://github.com/Yubico/Yubico.NET.SDK/releases/latest</PackageReleaseNotes> |
| 50 | + |
| 51 | + <!-- StrongName signing --> |
| 52 | + <SignAssembly>true</SignAssembly> |
| 53 | + <AssemblyOriginatorKeyFile>..\..\Yubico.NET.SDK.snk</AssemblyOriginatorKeyFile> |
| 54 | + |
| 55 | + <DefineConstants Condition="'$(Configuration)' == 'Debug'">$(DefineConstants);ENABLE_SENSITIVE_LOG</DefineConstants> |
| 56 | + </PropertyGroup> |
| 57 | + |
| 58 | + <PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'"> |
| 59 | + <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> |
| 60 | + </PropertyGroup> |
| 61 | + |
| 62 | + <ItemGroup Label="Resource file definition"> |
| 63 | + |
| 64 | + <Compile Update="Resources\ExceptionMessages.Designer.cs"> |
| 65 | + <DesignTime>True</DesignTime> |
| 66 | + <AutoGen>True</AutoGen> |
| 67 | + <DependentUpon>ExceptionMessages.resx</DependentUpon> |
| 68 | + </Compile> |
| 69 | + |
| 70 | + <EmbeddedResource Update="Resources\ExceptionMessages.resx"> |
| 71 | + <Generator>ResXFileCodeGenerator</Generator> |
| 72 | + <LastGenOutput>ExceptionMessages.Designer.cs</LastGenOutput> |
| 73 | + <CustomToolNamespace>Yubico.Core</CustomToolNamespace> |
| 74 | + </EmbeddedResource> |
| 75 | + |
| 76 | + <None Include="..\..\LICENSE.txt" Pack="true" PackagePath="" /> |
| 77 | + <None Include="..\..\README.md" Pack="true" PackagePath="" /> |
| 78 | + <None Include="..\..\yubico-circle-y-mark.png" Pack="true" PackagePath="" /> |
| 79 | + <None Include="..\..\Yubico.NET.SDK.snk"> |
| 80 | + <Link>Yubico.NET.SDK.snk</Link> |
| 81 | + </None> |
| 82 | + </ItemGroup> |
| 83 | + |
| 84 | + <ItemGroup Label="Grouping HID code partial classes"> |
| 85 | + <Compile Update="Yubico\Core\Devices\Hid\HidCodeTranslator.ModHex.cs"> |
| 86 | + <DependentUpon>HidCodeTranslator.cs</DependentUpon> |
| 87 | + </Compile> |
| 88 | + <Compile Update="Yubico\Core\Devices\Hid\HidCodeTranslator.en_UK.cs"> |
| 89 | + <DependentUpon>HidCodeTranslator.cs</DependentUpon> |
| 90 | + </Compile> |
| 91 | + <Compile Update="Yubico\Core\Devices\Hid\HidCodeTranslator.en_US.cs"> |
| 92 | + <DependentUpon>HidCodeTranslator.cs</DependentUpon> |
| 93 | + </Compile> |
| 94 | + <Compile Update="Yubico\Core\Devices\Hid\HidCodeTranslator.de_DE.cs"> |
| 95 | + <DependentUpon>HidCodeTranslator.cs</DependentUpon> |
| 96 | + </Compile> |
| 97 | + <Compile Update="Yubico\Core\Devices\Hid\HidCodeTranslator.fr_FR.cs"> |
| 98 | + <DependentUpon>HidCodeTranslator.cs</DependentUpon> |
| 99 | + </Compile> |
| 100 | + <Compile Update="Yubico\Core\Devices\Hid\HidCodeTranslator.it_IT.cs"> |
| 101 | + <DependentUpon>HidCodeTranslator.cs</DependentUpon> |
| 102 | + </Compile> |
| 103 | + <Compile Update="Yubico\Core\Devices\Hid\HidCodeTranslator.es_US.cs"> |
| 104 | + <DependentUpon>HidCodeTranslator.cs</DependentUpon> |
| 105 | + </Compile> |
| 106 | + <Compile Update="Yubico\Core\Devices\Hid\HidCodeTranslator.sv_SE.cs"> |
| 107 | + <DependentUpon>HidCodeTranslator.cs</DependentUpon> |
| 108 | + </Compile> |
| 109 | + </ItemGroup> |
| 110 | + |
| 111 | + <ItemGroup> |
| 112 | + <PackageReference Include="Microsoft.Bcl.HashCode" Version="6.0.0" /> |
| 113 | + <PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="9.0.0"> |
| 114 | + <PrivateAssets>all</PrivateAssets> |
| 115 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 116 | + </PackageReference> |
| 117 | + <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" /> |
| 118 | + <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.2" /> |
| 119 | + <PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" /> |
| 120 | + <PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="8.0.0" /> |
| 121 | + <PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" /> |
| 122 | + <!-- Before updating PolySharp, we should do some due dilligence on the update --> |
| 123 | + <PackageReference Include="PolySharp" Version="1.15.0" AllowUpdates="false"> |
| 124 | + <PrivateAssets>all</PrivateAssets> |
| 125 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 126 | + </PackageReference> |
| 127 | + <PackageReference Include="System.Memory" Version="4.6.3" /> |
| 128 | + <PackageReference Include="System.Runtime.InteropServices.RuntimeInformation" Version="4.3.0" /> |
| 129 | + <PackageReference Include="System.Security.Principal.Windows" Version="5.0.0" /> |
| 130 | + <!-- The wildcard version tag allows us to include the latest minor and pre-release versions --> |
| 131 | + <PackageReference Include="Yubico.NativeShims" Version="1.*-*" /> |
| 132 | + </ItemGroup> |
| 133 | + |
| 134 | + <ItemGroup Label="Expose internal test hooks to Unit Test projects"> |
| 135 | + |
| 136 | + <!-- Expose internal test hooks --> |
| 137 | + <AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> |
| 138 | + <_Parameter1>Yubico.Core.UnitTests,PublicKey=00240000048000001401000006020000002400005253413100080000010001003312c63e1417ad4652242148c599b55c50d3213c7610b4cc1f467b193bfb8d131de6686268a9db307fcef9efcd5e467483fe9015307e5d0cf9d2fd4df12f29a1c7a72e531d8811ca70f6c80c4aeb598c10bb7fc48742ab86aa7986b0ae9a2f4876c61e0b81eb38e5b549f1fc861c633206f5466bfde021cb08d094742922a8258b582c3bc029eab88c98d476dac6e6f60bc0016746293f5337c68b22e528931b6494acddf1c02b9ea3986754716a9f2a32c59ff3d97f1e35ee07ca2972b0269a4cde86f7b64f80e7c13152c0f84083b5cc4f06acc0efb4316ff3f08c79bc0170229007fb27c97fb494b22f9f7b07f45547e263a44d5a7fe7da6a945a5e47afc9</_Parameter1> |
| 139 | + </AssemblyAttribute> |
| 140 | + |
| 141 | + <AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> |
| 142 | + <_Parameter1>Yubico.YubiKey.IntegrationTests,PublicKey=00240000048000001401000006020000002400005253413100080000010001003312c63e1417ad4652242148c599b55c50d3213c7610b4cc1f467b193bfb8d131de6686268a9db307fcef9efcd5e467483fe9015307e5d0cf9d2fd4df12f29a1c7a72e531d8811ca70f6c80c4aeb598c10bb7fc48742ab86aa7986b0ae9a2f4876c61e0b81eb38e5b549f1fc861c633206f5466bfde021cb08d094742922a8258b582c3bc029eab88c98d476dac6e6f60bc0016746293f5337c68b22e528931b6494acddf1c02b9ea3986754716a9f2a32c59ff3d97f1e35ee07ca2972b0269a4cde86f7b64f80e7c13152c0f84083b5cc4f06acc0efb4316ff3f08c79bc0170229007fb27c97fb494b22f9f7b07f45547e263a44d5a7fe7da6a945a5e47afc9</_Parameter1> |
| 143 | + </AssemblyAttribute> |
| 144 | + |
| 145 | + <!-- Enable use of the Moq framework--> |
| 146 | + <AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> |
| 147 | + <_Parameter1>DynamicProxyGenAssembly2,PublicKey=0024000004800000940000000602000000240000525341310004000001000100c547cac37abd99c8db225ef2f6c8a3602f3b3606cc9891605d02baa56104f4cfc0734aa39b93bf7852f7d9266654753cc297e7d2edfe0bac1cdcf9f717241550e0a7b191195b7667bb4f64bcb8e2121380fd1d9d46ad2d92d2d15605093924cceaf74c4861eff62abf69b9291ed0a340e113be11e6a7d3113e92484cf7045cc7</_Parameter1> |
| 148 | + </AssemblyAttribute> |
| 149 | + |
| 150 | + </ItemGroup> |
| 151 | +</Project> |
0 commit comments