123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>netstandard2.0</TargetFramework>
- <Platforms>AnyCPU;x64;x86</Platforms>
- <Company>Vinno</Company>
- <Product>VideoStatusInspector</Product>
- <Authors>IDS.AI</Authors>
- <Description>VideoStatusInspector csharp dll</Description>
- <AssemblyVersion>1.0.1.3</AssemblyVersion>
- <FileVersion>1.0.1.3</FileVersion>
- <Version>1.0.1</Version>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <PlatformTarget>AnyCPU</PlatformTarget>
- <OutputPath>..\Bin\</OutputPath>
- <DefineConstants>TRACE</DefineConstants>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
- <PlatformTarget>AnyCPU</PlatformTarget>
- <OutputPath>..\Bin\</OutputPath>
- <DefineConstants>TRACE</DefineConstants>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
- <PlatformTarget>AnyCPU</PlatformTarget>
- <OutputPath>..\Bin\</OutputPath>
- <DefineConstants>TRACE</DefineConstants>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <OutputPath>..\Bin\</OutputPath>
- <DefineConstants>TRACE</DefineConstants>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
- <OutputPath>..\Bin\</OutputPath>
- <DefineConstants>TRACE</DefineConstants>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
- <OutputPath>..\Bin\</OutputPath>
- <DefineConstants>TRACE</DefineConstants>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
- </Project>
|