Skip to content

Commit cd3128a

Browse files
committed
remove OutputPath
1 parent fa70031 commit cd3128a

File tree

5 files changed

+5
-15
lines changed

5 files changed

+5
-15
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,3 +93,4 @@ docs-temp
9393

9494
# Verify Tests
9595
*.received.*
96+
.artifacts

Directory.Build.targets

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,11 @@
55
<AssemblyOriginatorKeyFile>$(SolutionRoot)\build\keys\keypair.snk</AssemblyOriginatorKeyFile>
66
</PropertyGroup>
77
<PropertyGroup Condition="$(IsPackable) == True">
8-
<OutDir>bin/$(Configuration)/$(TargetFramework)/</OutDir>
98
<NoWarn>1591,1572,1571,1573,1587,1570,NU5048</NoWarn>
109
<CheckEolTargetFramework>false</CheckEolTargetFramework>
1110
<Prefer32Bit>false</Prefer32Bit>
1211
<DebugSymbols>true</DebugSymbols>
1312

14-
<!-- we need to referenced assemblies during the command line build so that ILRepack can pick them up -->
15-
<CopyLocalLockFileAssemblies Condition="'$(TargetFramework)'=='netstandard2.0'">true</CopyLocalLockFileAssemblies>
1613
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
1714
</PropertyGroup>
1815

Elasticsearch.sln

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
44
VisualStudioVersion = 17.0.31612.314
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{D455EC79-E1E0-4509-B297-0DA3AED8DFF7}"
7+
ProjectSection(SolutionItems) = preProject
8+
src\_PublishArtifacts.Build.props = src\_PublishArtifacts.Build.props
9+
EndProjectSection
710
EndProject
811
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Playground", "src\Playground\Playground.csproj", "{8F2EA767-8746-4816-B6EE-342BCB8F1AAB}"
912
EndProject

src/Elastic.Clients.Elasticsearch.Serverless/Elastic.Clients.Elasticsearch.Serverless.csproj

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,6 @@
2222
</PropertyGroup>
2323
<ItemGroup>
2424
<PackageReference Include="Elastic.Transport" Version="0.4.22" />
25-
<PackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.3.44">
26-
<PrivateAssets>all</PrivateAssets>
27-
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
28-
</PackageReference>
2925
</ItemGroup>
3026
<ItemGroup>
3127
<InternalsVisibleTo Include="Tests" Key="$(ExposedPublicKey)" />
@@ -41,7 +37,7 @@
4137
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
4238
</ItemGroup>
4339
<ItemGroup>
44-
<Compile Include="..\Elastic.Clients.Elasticsearch\_Shared\**\*.cs" />
40+
<Compile Include="..\Elastic.Clients.Elasticsearch\_Shared\**\*.cs" LinkBase="Shared" />
4541
</ItemGroup>
4642

4743
</Project>

src/Elastic.Clients.Elasticsearch/Elastic.Clients.Elasticsearch.csproj

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,6 @@
2222
</PropertyGroup>
2323
<ItemGroup>
2424
<PackageReference Include="Elastic.Transport" Version="0.4.22" />
25-
<PackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.3.44">
26-
<PrivateAssets>all</PrivateAssets>
27-
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
28-
</PackageReference>
2925
</ItemGroup>
3026
<ItemGroup>
3127
<InternalsVisibleTo Include="Tests" Key="$(ExposedPublicKey)" />
@@ -40,7 +36,4 @@
4036
<ItemGroup>
4137
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
4238
</ItemGroup>
43-
<ItemGroup>
44-
<Folder Include="Api\IndexManagement\" />
45-
</ItemGroup>
4639
</Project>

0 commit comments

Comments
 (0)