You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.7 KiB
XML
38 lines
1.7 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<OutputType>WinExe</OutputType>
|
|
<RootNamespace>GeoSigma.PcgDrawSection</RootNamespace>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<BaseOutputPath>..\..\bin</BaseOutputPath>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
|
|
<OutputPath>bin\x64\Debug\</OutputPath>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<CodeAnalysisRuleSet>..\..\Drawer.ruleset</CodeAnalysisRuleSet>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
|
|
<OutputPath>bin\x64\Release\</OutputPath>
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Update="UcSectionViewer.cs">
|
|
<SubType>UserControl</SubType>
|
|
</Compile>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\GeoSigmaDrawLib\GeoSigmaDrawLib.csproj" />
|
|
<ProjectReference Include="..\SegyReader\SegyReader.csproj" />
|
|
<ProjectReference Include="..\SigmaDrawerElement\SigmaDrawerElement.csproj" />
|
|
<ProjectReference Include="..\SigmaDrawerStyle\SigmaDrawerStyle.csproj" />
|
|
<ProjectReference Include="..\UCDraw\UCDraw.csproj" />
|
|
</ItemGroup>
|
|
</Project> |