1
- <?xml version =" 1.0" encoding =" utf-8" ?>
2
- <Project ToolsVersion =" 4.0" DefaultTargets =" Build" xmlns =" http://schemas.microsoft.com/developer/msbuild/2003" >
1
+ <Project Sdk =" Microsoft.NET.Sdk" >
3
2
<PropertyGroup >
4
- <Configuration Condition =" '$(Configuration)' == '' " >Debug</Configuration >
5
- <Platform Condition =" '$(Platform)' == '' " >AnyCPU</Platform >
6
- <ProductVersion >8.0.30703</ProductVersion >
7
- <SchemaVersion >2.0</SchemaVersion >
8
- <ProjectGuid >{7E9D2DB4-78FE-41BD-9566-15F68D42E4D9}</ProjectGuid >
9
- <OutputType >Library</OutputType >
10
- <AppDesignerFolder >Properties</AppDesignerFolder >
11
- <RootNamespace >PowerAssert</RootNamespace >
12
- <AssemblyName >PowerAssert</AssemblyName >
13
- <TargetFrameworkVersion >v4.0</TargetFrameworkVersion >
14
- <FileAlignment >512</FileAlignment >
15
- <TargetFrameworkProfile />
3
+ <TargetFrameworks >netcoreapp1.1;net40</TargetFrameworks >
4
+ <PackageId >PowerAssert</PackageId >
5
+ <Authors >Rob Fonseca-Ensor, David Alpert, George Pollard, Anders Holmström, Josh Robb, Alex Henderson and Peter Goodman</Authors >
6
+ <Description >When you make a unit test assertion with PowerAssert, your assertion messages become much more useful.</Description >
7
+ <PackageRequireLicenseAcceptance >false</PackageRequireLicenseAcceptance >
8
+ <PackageLicenseUrl >https://github.com/PowerAssert/PowerAssert.Net/blob/master/LICENSE.txt</PackageLicenseUrl >
9
+ <PackageProjectUrl >https://github.com/PowerAssert/PowerAssert.Net</PackageProjectUrl >
10
+ <PackageTags >NUnit xUnit.NET mstest expression-tree</PackageTags >
16
11
</PropertyGroup >
17
- <PropertyGroup Condition =" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' " >
18
- <DebugSymbols >true</DebugSymbols >
19
- <DebugType >full</DebugType >
20
- <Optimize >false</Optimize >
21
- <OutputPath >bin\Debug\</OutputPath >
22
- <DefineConstants >DEBUG;TRACE</DefineConstants >
23
- <ErrorReport >prompt</ErrorReport >
24
- <WarningLevel >4</WarningLevel >
25
- <Prefer32Bit >false</Prefer32Bit >
26
- </PropertyGroup >
27
- <PropertyGroup Condition =" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' " >
28
- <DebugType >pdbonly</DebugType >
29
- <Optimize >true</Optimize >
30
- <OutputPath >bin\Release\</OutputPath >
31
- <DefineConstants >TRACE</DefineConstants >
32
- <ErrorReport >prompt</ErrorReport >
33
- <WarningLevel >4</WarningLevel >
34
- <Prefer32Bit >false</Prefer32Bit >
35
- </PropertyGroup >
36
- <PropertyGroup Condition =" '$(Configuration)|$(Platform)' == 'NuPackRelease|AnyCPU'" >
37
- <OutputPath >release\lib\</OutputPath >
38
- <DefineConstants >TRACE</DefineConstants >
39
- <Optimize >true</Optimize >
40
- <DebugType >none</DebugType >
41
- <PlatformTarget >AnyCPU</PlatformTarget >
42
- <CodeAnalysisLogFile >bin\Release\PowerAssert.dll.CodeAnalysisLog.xml</CodeAnalysisLogFile >
43
- <CodeAnalysisUseTypeNameInSuppression >true</CodeAnalysisUseTypeNameInSuppression >
44
- <CodeAnalysisModuleSuppressionsFile >GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile >
45
- <ErrorReport >prompt</ErrorReport >
46
- <CodeAnalysisRuleSet >MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet >
47
- <CodeAnalysisRuleSetDirectories >;C:\Program Files\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets</CodeAnalysisRuleSetDirectories >
48
- <CodeAnalysisIgnoreBuiltInRuleSets >false</CodeAnalysisIgnoreBuiltInRuleSets >
49
- <CodeAnalysisRuleDirectories >;C:\Program Files\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules</CodeAnalysisRuleDirectories >
50
- <CodeAnalysisIgnoreBuiltInRules >false</CodeAnalysisIgnoreBuiltInRules >
51
- <Prefer32Bit >false</Prefer32Bit >
12
+
13
+ <PropertyGroup >
14
+ <GenerateAssemblyInfo >false</GenerateAssemblyInfo >
52
15
</PropertyGroup >
16
+
17
+ <PropertyGroup Condition =" '$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug-Core|netcoreapp1.1|AnyCPU'" />
18
+
19
+ <PropertyGroup Condition =" '$(Configuration)|$(TargetFramework)|$(Platform)'=='Release-Core|netcoreapp1.1|AnyCPU'" />
20
+
53
21
<ItemGroup >
54
- <Reference Include =" Microsoft.CSharp" />
55
- <Reference Include =" System" />
56
- <Reference Include =" System.Core" />
57
- </ItemGroup >
58
- <ItemGroup >
59
- <Compile Include =" Annotations.cs" />
60
- <Compile Include =" Hints\BrokenEqualityHint.cs" />
61
- <Compile Include =" Hints\EnumComparisonShowValuesHint.cs" />
62
- <Compile Include =" Hints\TimeSpanTotalMistakesHint.cs" />
63
- <Compile Include =" Hints\EnumerableEqualsHint.cs" />
64
- <Compile Include =" Hints\DelegateShouldHaveBeenInvokedEqualsHint.cs" />
65
- <Compile Include =" Hints\EnumerableOperatorEqualsHint.cs" />
66
- <Compile Include =" Hints\FloatEqualityHint.cs" />
67
- <Compile Include =" Hints\HintUtils.cs" />
68
- <Compile Include =" Hints\IHint.cs" />
69
- <Compile Include =" Hints\MethodEqualsInsteadOfOperatorEqualsHint.cs" />
70
- <Compile Include =" Hints\MultiHint.cs" />
71
- <Compile Include =" Hints\OperatorEqualsHintBase.cs" />
72
- <Compile Include =" Hints\SequenceEqualHint.cs" />
73
- <Compile Include =" Hints\StringEqualsHint.cs" />
74
- <Compile Include =" Hints\StringOperatorEqualsHint.cs" />
75
- <Compile Include =" Infrastructure\ExpressionParser.cs" />
76
- <Compile Include =" Infrastructure\Nodes\InvocationNode.cs" />
77
- <Compile Include =" Infrastructure\NodeFormatter.cs" />
78
- <Compile Include =" Infrastructure\Nodes\ArrayIndexNode.cs" />
79
- <Compile Include =" Infrastructure\Nodes\BinaryNode.cs" />
80
- <Compile Include =" Infrastructure\Nodes\ConditionalNode.cs" />
81
- <Compile Include =" Infrastructure\Nodes\ConstantNode.cs" />
82
- <Compile Include =" Infrastructure\Nodes\MemberAccessNode.cs" />
83
- <Compile Include =" Infrastructure\Nodes\MethodCallNode.cs" />
84
- <Compile Include =" Infrastructure\Nodes\NewArrayNode.cs" />
85
- <Compile Include =" Infrastructure\Nodes\NewObjectNode.cs" />
86
- <Compile Include =" Infrastructure\Nodes\Node.cs" />
87
- <Compile Include =" Infrastructure\Nodes\UnaryNode.cs" />
88
- <Compile Include =" Infrastructure\ObjectFormatter.cs" />
89
- <Compile Include =" Infrastructure\ReplacementVisitor.cs" />
90
- <Compile Include =" Infrastructure\Util.Generated.cs" >
91
- <AutoGen >True</AutoGen >
92
- <DesignTime >True</DesignTime >
93
- <DependentUpon >Util.tt</DependentUpon >
94
- </Compile >
95
- <Compile Include =" MultipleAssertions\Error.cs" />
96
- <Compile Include =" MultipleAssertions\PolyAssert.cs" />
97
- <Compile Include =" MultipleAssertions\PolyAssertException.cs" />
98
- <Compile Include =" PAssert.cs" />
99
- <Compile Include =" Properties\AssemblyInfo.cs" />
100
- </ItemGroup >
101
- <ItemGroup >
102
- <None Include =" Infrastructure\Util.tt" >
22
+ <None Update =" Infrastructure\Util.tt" >
103
23
<Generator >TextTemplatingFileGenerator</Generator >
104
24
<LastGenOutput >Util.Generated.cs</LastGenOutput >
105
25
</None >
106
- <None Include =" powerassert.nuspec" />
107
26
</ItemGroup >
27
+
28
+ <ItemGroup >
29
+ <Service Include =" {508349b6-6b84-4df5-91f0-309beebad82d}" />
30
+ </ItemGroup >
31
+
108
32
<ItemGroup >
109
- <Service Include =" {508349B6-6B84-4DF5-91F0-309BEEBAD82D}" />
33
+ <Compile Update =" Infrastructure\Util.Generated.cs" >
34
+ <DesignTime >True</DesignTime >
35
+ <AutoGen >True</AutoGen >
36
+ <DependentUpon >Util.tt</DependentUpon >
37
+ </Compile >
110
38
</ItemGroup >
111
- <ItemGroup />
112
- <Import Project =" $(MSBuildToolsPath)\Microsoft.CSharp.targets" />
113
- <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
114
- Other similar extension points exist, see Microsoft.Common.targets.
115
- <Target Name="BeforeBuild">
116
- </Target>
117
- <Target Name="AfterBuild">
118
- </Target>
119
- -->
39
+
120
40
</Project >
0 commit comments