Files
BeWoPlaner/DakotaSender/DakotaSender.csproj

78 lines
3.2 KiB
XML
Raw Permalink Normal View History

2024-07-02 11:44:48 +02:00
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" 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>{A959FE9A-1647-4C02-B2EE-6A95EBF6DC9A}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>DakotaSender</RootNamespace>
<AssemblyName>DakotaSender</AssemblyName>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Configuration" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Config.cs" />
2025-01-13 16:06:56 +01:00
<Compile Include="DakotaSenderUtils.cs" />
<Compile Include="FileController.cs" />
<Compile Include="Returncodes.cs" />
2024-07-02 13:18:02 +02:00
<Compile Include="DakotaSystemFile.cs" />
2024-07-02 11:44:48 +02:00
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
2024-07-03 16:44:58 +02:00
<Compile Include="XmlFileConverter.cs" />
2024-07-02 11:44:48 +02:00
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Server\Components\ServerUtils\ServerUtils.csproj">
<Project>{EC2349FB-7FE0-4AD1-B28B-A7A27AF80A57}</Project>
<Name>ServerUtils</Name>
</ProjectReference>
<ProjectReference Include="..\Shared\Shared.csproj">
<Project>{2f50b83d-a3f0-4ec4-979a-3f9b7e3d8ed4}</Project>
<Name>Shared</Name>
</ProjectReference>
</ItemGroup>
2025-01-13 16:06:56 +01:00
<ItemGroup>
2026-06-30 11:34:53 +02:00
<Content Include="tenants_allow.txt">
2025-01-13 16:10:01 +01:00
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="tenants_test.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
2025-01-13 16:06:56 +01:00
</ItemGroup>
2024-07-02 11:44:48 +02:00
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>