bindED/bindEDplugin.csproj

102 lines
4.3 KiB
XML
Raw Normal View History

2020-09-22 20:17:42 +02:00
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{C8AC9134-639D-45D2-B5EF-138E0550E0C9}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>bindEDplugin</RootNamespace>
<AssemblyName>bindEDplugin</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
2020-09-22 20:17:42 +02:00
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
2020-09-22 20:35:52 +02:00
<OutputPath>bin\bindED\</OutputPath>
2020-09-22 20:17:42 +02:00
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<LangVersion>8.0</LangVersion>
2020-09-22 20:17:42 +02:00
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
2020-09-22 20:35:52 +02:00
<OutputPath>bin\bindED\</OutputPath>
2020-09-22 20:17:42 +02:00
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<LangVersion>8.0</LangVersion>
2020-09-22 20:17:42 +02:00
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.CSharp" />
<Reference Include="System" />
<Reference Include="System.Xml" />
<Reference Include="System.Xml.Linq" />
</ItemGroup>
<ItemGroup>
<Compile Include="bindED.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<COMReference Include="IWshRuntimeLibrary">
<Guid>{F935DC20-1CF0-11D0-ADB9-00C04FD58A0B}</Guid>
<VersionMajor>1</VersionMajor>
<VersionMinor>0</VersionMinor>
<Lcid>0</Lcid>
<WrapperTool>tlbimp</WrapperTool>
<Isolated>False</Isolated>
<EmbedInteropTypes>True</EmbedInteropTypes>
</COMReference>
</ItemGroup>
2020-09-22 20:35:52 +02:00
<ItemGroup>
2021-06-14 11:32:14 +02:00
<None Include="docs\index.md" />
<Content Include=".gitignore" />
2020-09-22 23:58:39 +02:00
<Content Include="EDMap-de-neo2.txt">
2020-09-22 23:30:25 +02:00
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="EDMap-en-gb.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
2020-09-23 19:37:40 +02:00
<Content Include="EDMap-en-us.txt">
2020-09-22 20:35:52 +02:00
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<None Include="docs\ReadMe.txt" />
2020-09-22 20:35:52 +02:00
</ItemGroup>
<ItemGroup>
2020-09-23 19:37:40 +02:00
<None Include=".editorconfig" />
2021-06-14 11:32:14 +02:00
<None Include="bindED-diagnostics-Profile.vap">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
2020-11-09 12:28:49 +01:00
<None Include="bindED-reports-Profile.vap">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
2020-10-24 14:49:24 +02:00
<None Include="CHANGELOG.md" />
2021-06-14 11:32:14 +02:00
<None Include="docs\troubleshooting.md" />
2020-09-22 20:35:52 +02:00
<None Include="LICENSE">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
2021-06-14 11:32:14 +02:00
<None Include="mkdocs.yml" />
2020-09-23 19:37:40 +02:00
<None Include="README.md">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
2020-09-22 20:35:52 +02:00
</ItemGroup>
2020-09-22 20:17:42 +02:00
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
2020-09-23 19:37:40 +02:00
<PreBuildEvent>powershell if (Test-Path '$(SolutionDir)bindEDplugin.zip') { Remove-Item -Path '$(SolutionDir)bindEDplugin.zip' }</PreBuildEvent>
</PropertyGroup>
<PropertyGroup>
<PostBuildEvent>if $(ConfigurationName) == Release (powershell Compress-Archive -Path '$(TargetDir)' -DestinationPath '$(SolutionDir)bindEDplugin.zip' -Force)</PostBuildEvent>
2020-09-22 20:17:42 +02:00
</PropertyGroup>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
2020-11-09 12:28:49 +01:00
</Project>