annotate Implab.Test/Implab.Test.csproj @ 269:ff581cff7003 v3

Working on Unity container xml configuration
author cin
date Tue, 24 Apr 2018 01:46:02 +0300
parents 6b3e5c48131b
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
249
d82909310094 Implab.Test moved to xunit
cin
parents: 227
diff changeset
1 <Project Sdk="Microsoft.NET.Sdk">
260
547a2fc0d93e minor fixes
cin
parents: 259
diff changeset
2 <PropertyGroup Condition="'$(OSTYPE)'=='linux'">
267
6b3e5c48131b Working on Unity xml configuration
cin
parents: 260
diff changeset
3 <TargetFrameworks>netcoreapp2.0;net46</TargetFrameworks>
260
547a2fc0d93e minor fixes
cin
parents: 259
diff changeset
4 <FrameworkPathOverride Condition="'$(TargetFramework)'=='net46'">/usr/lib/mono/4.5/</FrameworkPathOverride>
547a2fc0d93e minor fixes
cin
parents: 259
diff changeset
5 </PropertyGroup>
547a2fc0d93e minor fixes
cin
parents: 259
diff changeset
6
547a2fc0d93e minor fixes
cin
parents: 259
diff changeset
7 <PropertyGroup Condition="'$(OSTYPE)'=='windows'">
547a2fc0d93e minor fixes
cin
parents: 259
diff changeset
8 <TargetFrameworks>netcoreapp2.0;net46</TargetFrameworks>
547a2fc0d93e minor fixes
cin
parents: 259
diff changeset
9 </PropertyGroup>
249
d82909310094 Implab.Test moved to xunit
cin
parents: 227
diff changeset
10
0
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
11 <PropertyGroup>
249
d82909310094 Implab.Test moved to xunit
cin
parents: 227
diff changeset
12 <IsPackable>false</IsPackable>
75
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
13 </PropertyGroup>
259
7d52dc684bbd PollingComponent: implemented correct stopping
cin
parents: 256
diff changeset
14
0
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
15 <ItemGroup>
259
7d52dc684bbd PollingComponent: implemented correct stopping
cin
parents: 256
diff changeset
16 <PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.6.0-preview-20180109-01" />
249
d82909310094 Implab.Test moved to xunit
cin
parents: 227
diff changeset
17 <PackageReference Include="xunit" Version="2.3.1" />
d82909310094 Implab.Test moved to xunit
cin
parents: 227
diff changeset
18 <PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
259
7d52dc684bbd PollingComponent: implemented correct stopping
cin
parents: 256
diff changeset
19 <ProjectReference Include="../Implab/Implab.csproj"/>
249
d82909310094 Implab.Test moved to xunit
cin
parents: 227
diff changeset
20 <DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" />
0
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
21 </ItemGroup>
260
547a2fc0d93e minor fixes
cin
parents: 259
diff changeset
22
249
d82909310094 Implab.Test moved to xunit
cin
parents: 227
diff changeset
23 </Project>