Microsoft.WinGet.SharedLib.csproj (1314B)
1 <Project Sdk="Microsoft.NET.Sdk"> 2 3 <PropertyGroup> 4 <TargetFramework>netstandard2.0</TargetFramework> 5 <OutputPath>$(SolutionDir)$(Platform)\$(Configuration)\$(MSBuildProjectName)\</OutputPath> 6 <DocumentationFile>$(OutputPath)\$(MSBuildProjectName).xml</DocumentationFile> 7 <Configurations>Debug;Release;ReleaseStatic</Configurations> 8 </PropertyGroup> 9 10 <ItemGroup> 11 <AdditionalFiles Include="..\..\stylecop.json" Link="stylecop.json" /> 12 </ItemGroup> 13 14 <ItemGroup> 15 <PackageReference Include="Microsoft.Win32.Registry" /> 16 <PackageReference Include="StyleCop.Analyzers"> 17 <PrivateAssets>all</PrivateAssets> 18 <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> 19 </PackageReference> 20 </ItemGroup> 21 22 <ItemGroup> 23 <Compile Update="Resources\GroupPolicyResource.Designer.cs"> 24 <DesignTime>True</DesignTime> 25 <AutoGen>True</AutoGen> 26 <DependentUpon>GroupPolicyResource.resx</DependentUpon> 27 </Compile> 28 </ItemGroup> 29 30 <ItemGroup> 31 <EmbeddedResource Update="Resources\GroupPolicyResource.resx"> 32 <Generator>ResXFileCodeGenerator</Generator> 33 <LastGenOutput>GroupPolicyResource.Designer.cs</LastGenOutput> 34 </EmbeddedResource> 35 </ItemGroup> 36 37 </Project>