Projektdateien hinzufügen.

This commit is contained in:
mr_sc
2026-08-19 19:27:41 +02:00
parent 0889f1f6c7
commit 7fe54c0785
32 changed files with 2406 additions and 0 deletions

View File

@@ -0,0 +1,96 @@
<?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>{D7E916B9-969E-4CFD-B6A3-527B7091D45A}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>FileinterfaceCronScheduler</RootNamespace>
<AssemblyName>FileinterfaceCronScheduler</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
<LangVersion>7.3</LangVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>x86</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>x86</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup>
<StartupObject>FileinterfaceCronScheduler.Program</StartupObject>
</PropertyGroup>
<PropertyGroup>
<SignManifests>false</SignManifests>
</PropertyGroup>
<ItemGroup>
<Reference Include="IMSApiDotNet">
<HintPath>lib\IMSApiDotNet.dll</HintPath>
<Private>true</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Configuration" />
<Reference Include="System.ServiceProcess" />
<Reference Include="System.Web.Extensions" />
<Reference Include="Microsoft.CSharp" />
</ItemGroup>
<ItemGroup>
<Compile Include="Program.cs" />
<Compile Include="FileinterfaceCronSchedulerService.cs">
<SubType>Component</SubType>
</Compile>
<Compile Include="RuntimeFactory.cs" />
<Compile Include="ImsCustomFunctionInvoker.cs" />
<Compile Include="IMSApi\ImsApiClient.cs" />
<Compile Include="Scheduler\CronExpression.cs" />
<Compile Include="Scheduler\CronJobConfig.cs" />
<Compile Include="Scheduler\CronJobExecutor.cs" />
<Compile Include="Scheduler\CronJobRepository.cs" />
<Compile Include="Scheduler\CronScheduler.cs" />
<Compile Include="Scheduler\WatcherJobConfig.cs" />
<Compile Include="Scheduler\WatcherJobRepository.cs" />
<Compile Include="Scheduler\WatcherJobExecutor.cs" />
<Compile Include="Scheduler\FileSystemWatcherManager.cs" />
<Compile Include="Scheduler\CustomFunctionInvoker.cs" />
<Compile Include="Scheduler\JobLog.cs" />
<Compile Include="Scheduler\SchedulerRuntime.cs" />
<Compile Include="Scheduler\WebAdminServer.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
<None Include="lib\README.txt" />
<Content Include="ihas.properties">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="cronjobs.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="watcherjobs.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<Target Name="CheckIMSApiDll" BeforeTargets="ResolveAssemblyReferences">
<Error Condition="!Exists('$(MSBuildProjectDirectory)\lib\IMSApiDotNet.dll')" Text="IMSApiDotNet.dll fehlt. Erwarteter Pfad: FileinterfaceCronScheduler\lib\IMSApiDotNet.dll" />
</Target>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>