ありエラー:
/usr/share/dotnet/sdk/2.0.0/Microsoft.Common.CurrentVersion.targets(1987,5): warning MSB3245: Could not resolve this reference. Could not locate the assembly "Microsoft.Extensions.Configuration.Abstractions". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. [/home/travis/build/ovation22/DapperRepository/Example.Repository/Example.Repository.csproj]
DapperRepository.cs(7,17): error CS0234: The type or namespace name 'Extensions' does not exist in the namespace 'Microsoft' (are you missing an assembly reference?) [/home/travis/build/ovation22/DapperRepository/Example.Repository/Example.Repository.csproj]
DapperRepository.cs(16,33): error CS0246: The type or namespace name 'IConfiguration' could not be found (are you missing a using directive or an assembly reference?) [/home/travis/build/ovation22/DapperRepository/Example.Repository/Example.Repository.csproj]
0123正常に見える
<ItemGroup>
<PackageReference Include="Dapper" Version="1.50.2" />
</ItemGroup>
を:
はExample.Repository.csproj
を見てみましょう。しかし、Microsoft.Extensions.Configuration.Abstractions
はどこですか?
<Reference Include="Microsoft.Extensions.Configuration.Abstractions">
<HintPath>C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.configuration.abstractions\2.0.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.Abstractions.dll</HintPath>
</Reference>
だから、あなたはそれがC:\Program Files
で利用可能であることのMSBuildを言っている:少し低く見てみましょう。 Travisは、このパスが明らかに存在しないLinuxでこれを実行しています。
そのcsprojにのようにPackageReference
を追加してみてください。それはこれを解決するはずです。
まあ*そのエラーの直前に、あなたは '/usr/share/dotnet/sdk/2.0.0/Microsoft.Common.CurrentVersion.targets(1987,5):警告MSB3245:この参照を解決できませんでした。アセンブリ "Microsoft.Extensions.Configuration.Abstractions"を見つけることができませんでした。 "それが関連していない場合、私は驚くでしょう。 –
(ドットネットのリストア手順では、Microsoft.Extensions.Configuration.Abstractionsがv1.0.0とv2.0.0の両方で記述されています。 –