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.
kev/Drawer/UCDraw/PcgDrawSection/PcgDrawSection.csproj

38 lines
1.7 KiB
XML

1 month ago
<Project Sdk="Microsoft.NET.Sdk">
1 month ago
<PropertyGroup>
1 month ago
<TargetFramework>net8.0-windows</TargetFramework>
1 month ago
<OutputType>WinExe</OutputType>
<RootNamespace>GeoSigma.PcgDrawSection</RootNamespace>
1 month ago
<UseWindowsForms>true</UseWindowsForms>
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<BaseOutputPath>..\..\bin</BaseOutputPath>
1 month ago
</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>
1 month ago
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
1 month ago
</ItemGroup>
<ItemGroup>
1 month ago
<Compile Update="UcSectionViewer.cs">
1 month ago
<SubType>UserControl</SubType>
</Compile>
</ItemGroup>
<ItemGroup>
1 month ago
<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" />
1 month ago
</ItemGroup>
</Project>