mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
70 lines
3.1 KiB
XML
70 lines
3.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup Label="Target">
|
|
<TargetFramework>net7.0-windows</TargetFramework>
|
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
<Platforms>x64;AnyCPU</Platforms>
|
|
<LangVersion>9.0</LangVersion>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Label="Feature">
|
|
<RootNamespace>Dalamud.Test</RootNamespace>
|
|
<AssemblyTitle>Dalamud.Test</AssemblyTitle>
|
|
<AssemblyName>Dalamud.Test</AssemblyName>
|
|
<Product>Dalamud.Test</Product>
|
|
<Description>Unit tests for Dalamud</Description>
|
|
<Company>goatcorp</Company>
|
|
<Copyright>Copyright © goatcorp 2021</Copyright>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Label="Output">
|
|
<OutputType>Library</OutputType>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Label="Configuration">
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
</PropertyGroup>
|
|
<PropertyGroup Label="Configuration" Condition=" '$(Configuration)' == 'Debug' ">
|
|
<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 Label="Configuration" Condition=" '$(Configuration)' == 'Release' ">
|
|
<DebugType>pdbonly</DebugType>
|
|
<Optimize>true</Optimize>
|
|
<OutputPath>bin\Release\</OutputPath>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Dalamud\Dalamud.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.10.0" />
|
|
<PackageReference Include="xunit" Version="2.4.1" />
|
|
<PackageReference Include="xunit.abstractions" Version="2.0.3" />
|
|
<PackageReference Include="xunit.analyzers" Version="0.10.0" />
|
|
<PackageReference Include="xunit.assert" Version="2.4.1" />
|
|
<PackageReference Include="xunit.core" Version="2.4.1" />
|
|
<PackageReference Include="xunit.extensibility.core" Version="2.4.1" />
|
|
<PackageReference Include="xunit.extensibility.execution" Version="2.4.1" />
|
|
<PackageReference Include="xunit.runner.console" Version="2.4.1">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
</Project>
|