1- <?xml version =" 1.0" encoding =" utf-8" ?>
2- <Project ToolsVersion =" 14.0" DefaultTargets =" Build" xmlns =" http://schemas.microsoft.com/developer/msbuild/2003" >
3- <Import Project =" $(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition =" Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4- <PropertyGroup >
5- <Configuration Condition =" '$(Configuration)' == '' " >Debug</Configuration >
6- <Platform Condition =" '$(Platform)' == '' " >AnyCPU</Platform >
7- <ProjectGuid >{FF77FAED-3274-4C0E-BDA0-98D8A5FA831E}</ProjectGuid >
8- <OutputType >Exe</OutputType >
9- <AppDesignerFolder >Properties</AppDesignerFolder >
10- <RootNamespace >AuthenticodeLint</RootNamespace >
11- <AssemblyName >authlint</AssemblyName >
12- <TargetFrameworkVersion >v4.6.1</TargetFrameworkVersion >
13- <FileAlignment >512</FileAlignment >
14- <AutoGenerateBindingRedirects >true</AutoGenerateBindingRedirects >
15- <Deterministic >true</Deterministic >
16- </PropertyGroup >
17- <PropertyGroup Condition =" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' " >
18- <PlatformTarget >AnyCPU</PlatformTarget >
19- <DebugSymbols >true</DebugSymbols >
20- <DebugType >full</DebugType >
21- <Optimize >false</Optimize >
22- <OutputPath >bin\Debug\</OutputPath >
23- <DefineConstants >DEBUG;TRACE</DefineConstants >
24- <ErrorReport >prompt</ErrorReport >
25- <WarningLevel >4</WarningLevel >
26- <AllowUnsafeBlocks >true</AllowUnsafeBlocks >
27- <Prefer32Bit >false</Prefer32Bit >
28- <UseVSHostingProcess >true</UseVSHostingProcess >
29- </PropertyGroup >
30- <PropertyGroup Condition =" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' " >
31- <PlatformTarget >AnyCPU</PlatformTarget >
32- <DebugType >pdbonly</DebugType >
33- <Optimize >true</Optimize >
34- <OutputPath >bin\Release\</OutputPath >
35- <DefineConstants >TRACE</DefineConstants >
36- <ErrorReport >prompt</ErrorReport >
37- <WarningLevel >4</WarningLevel >
38- <AllowUnsafeBlocks >true</AllowUnsafeBlocks >
39- <Prefer32Bit >false</Prefer32Bit >
40- </PropertyGroup >
41- <PropertyGroup >
42- <ApplicationManifest >app.manifest</ApplicationManifest >
43- </PropertyGroup >
1+ <Project Sdk =" Microsoft.NET.Sdk" >
2+ <PropertyGroup >
3+ <OutputType >Exe</OutputType >
4+ <AssemblyName >authlint</AssemblyName >
5+ <TargetFrameworks >net461</TargetFrameworks >
6+ <VersionPrefix >0.10.0</VersionPrefix >
7+ <Authors >Kevin Jones</Authors >
8+ <LangVersion >latest</LangVersion >
9+ <AllowUnsafeBlocks >true</AllowUnsafeBlocks >
10+ </PropertyGroup >
4411 <ItemGroup >
45- <Reference Include =" System" />
46- <Reference Include =" System.Core" />
4712 <Reference Include =" System.Security" />
48- <Reference Include =" System.Xml.Linq" />
49- <Reference Include =" System.Data.DataSetExtensions" />
50- <Reference Include =" Microsoft.CSharp" />
51- <Reference Include =" System.Data" />
52- <Reference Include =" System.Net.Http" />
53- <Reference Include =" System.Xml" />
54- </ItemGroup >
55- <ItemGroup >
56- <Compile Include =" BitStrengthCalculator.cs" />
57- <Compile Include =" CertificatePaddingExtractor.cs" />
58- <Compile Include =" CheckEngine.cs" />
59- <Compile Include =" CommandLineParser.cs" />
60- <Compile Include =" ConfigurationValidator.cs" />
61- <Compile Include =" Extraction.cs" />
62- <Compile Include =" Interop\CertStoreSafeHandle.cs" />
63- <Compile Include =" Interop\Crypt32.cs" />
64- <Compile Include =" Interop\CryptMsgSafeHandle.cs" />
65- <Compile Include =" Interop\LocalBufferSafeHandle.cs" />
66- <Compile Include =" Interop\Pe.cs" />
67- <Compile Include =" Interop\Wintrust.cs" />
68- <Compile Include =" IRuleResultCollector.cs" />
69- <Compile Include =" ISignature.cs" />
70- <Compile Include =" KnownGuids.cs" />
71- <Compile Include =" KnownOids.cs" />
72- <Compile Include =" OidParser.cs" />
73- <Compile Include =" PE\PortableExecutable.cs" />
74- <Compile Include =" PublisherInformation.cs" />
75- <Compile Include =" Signature.cs" />
76- <Compile Include =" Rules\10013-MaxKeyLengthRule.cs" />
77- <Compile Include =" Rules\10011-StrongKeyLengthRule.cs" />
78- <Compile Include =" Rules\10012-RsaDsaPrimarySignatureRule.cs" />
79- <Compile Include =" Rules\CertificateChainRuleBase.cs" />
80- <Compile Include =" Rules\IAuthenticodeRule.cs" />
81- <Compile Include =" Program.cs" />
82- <Compile Include =" Properties\AssemblyInfo.cs" />
83- <Compile Include =" Rules\10010-NoUnknownCertificatesRule.cs" />
84- <Compile Include =" Rules\10002-NoWeakFileDigestAlgorithmsRule.cs" />
85- <Compile Include =" Rules\10005-PublisherInformationUrlHttpsRule.cs" />
86- <Compile Include =" Rules\10004-PublisherInformationRule.cs" />
87- <Compile Include =" Rules\RuleResult.cs" />
88- <Compile Include =" Rules\10000-Sha1PrimarySignatureRule.cs" />
89- <Compile Include =" Rules\10001-Sha2SignatureExistsRule.cs" />
90- <Compile Include =" Rules\10006-SigningCertificateDigestAlgorithmRule.cs" />
91- <Compile Include =" Rules\10003-TimestampedRule.cs" />
92- <Compile Include =" Rules\10007-TrustedSignatureRule.cs" />
93- <Compile Include =" Rules\10009-NoUnknownUnsignedAttibuteRule.cs" />
94- <Compile Include =" Rules\10008-WinCertificatePaddingRule.cs" />
95- <Compile Include =" SignatureExtensions.cs" />
96- <Compile Include =" SignatureExtractor.cs" />
97- <Compile Include =" SignatureHasher.cs" />
98- <Compile Include =" SignerInfoExtensions.cs" />
99- <Compile Include =" StdOutRuleResultCollector.cs" />
100- <Compile Include =" VerboseSignatureTextWriter.cs" />
101- <Compile Include =" XmlRuleResultCollector.cs" />
102- </ItemGroup >
103- <ItemGroup >
104- <None Include =" app.manifest" />
105- </ItemGroup >
106- <Import Project =" $(MSBuildToolsPath)\Microsoft.CSharp.targets" />
107- <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
108- Other similar extension points exist, see Microsoft.Common.targets.
109- <Target Name="BeforeBuild">
110- </Target>
111- <Target Name="AfterBuild">
112- </Target>
113- -->
13+ </ItemGroup >
11414</Project >
0 commit comments