2023-06-02 12:11:24 +03:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-08-20 19:42:27 +03:00
|
|
|
|
|
2019-01-17 05:37:47 +03:00
|
|
|
|
<Import Project="$(MSBuildThisFileDirectory)..\..\Repo.props" />
|
|
|
|
|
|
2018-08-20 19:42:27 +03:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2023-06-02 12:11:24 +03:00
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2018-08-20 19:42:27 +03:00
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
2018-10-05 00:08:36 +03:00
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
2019-01-17 22:10:13 +03:00
|
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
|
|
|
<WarningsAsErrors />
|
2019-01-25 23:51:33 +03:00
|
|
|
|
<OutputPath>$(RepoArtifacts)StaticAnalysis\</OutputPath>
|
|
|
|
|
<PublishDir>$(OutputPath)</PublishDir>
|
2018-08-20 19:42:27 +03:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
<DefineConstants>TRACE;DEBUG;NETSTANDARD</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
<DefineConstants>TRACE;NETSTANDARD</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-11-14 15:30:07 +03:00
|
|
|
|
<PackageReference Include="NJsonSchema" Version="10.8.0" />
|
2021-09-20 16:50:33 +03:00
|
|
|
|
<PackageReference Include="System.Reflection.MetadataLoadContext" Version="5.0.0" />
|
2018-08-20 19:42:27 +03:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Tools.Common\Tools.Common.Netcore.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Update="Properties\Resources.resx">
|
|
|
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
|
|
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Exceptions\**\*.csv" CopyToOutputDirectory="PreserveNewest" />
|
|
|
|
|
<Compile Remove="StaticAnalysis.Test\**" />
|
|
|
|
|
<EmbeddedResource Remove="StaticAnalysis.Test\**" />
|
|
|
|
|
<None Remove="StaticAnalysis.Test\**" />
|
|
|
|
|
<Content Include="log4net.config" CopyToOutputDirectory="PreserveNewest" />
|
2022-11-14 15:30:07 +03:00
|
|
|
|
<Content Include="UXMetadataAnalyzer\PortalInputSchema.json" CopyToOutputDirectory="PreserveNewest" />
|
2018-08-20 19:42:27 +03:00
|
|
|
|
</ItemGroup>
|
2020-04-27 18:03:42 +03:00
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Reference Include="Markdown.MAML">
|
|
|
|
|
<HintPath>lib\Markdown.MAML.dll</HintPath>
|
|
|
|
|
</Reference>
|
|
|
|
|
</ItemGroup>
|
2023-06-02 12:11:24 +03:00
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Update="Properties\Resources.Designer.cs">
|
|
|
|
|
<DesignTime>True</DesignTime>
|
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|
|
|
|
</Compile>
|
|
|
|
|
</ItemGroup>
|
2018-08-20 19:42:27 +03:00
|
|
|
|
</Project>
|