File tree Expand file tree Collapse file tree 3 files changed +29
-1
lines changed 
generators/src/main/java/com/algolia/codegen/cts/manager 
templates/csharp/snippets Expand file tree Collapse file tree 3 files changed +29
-1
lines changed Original file line number Diff line number Diff line change @@ -57,4 +57,4 @@ swiftformat
5757
5858foo 
5959
60- snippets 
60+ / snippets 
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ public void addTestsSupportingFiles(List<SupportingFile> supportingFiles) {
2828
2929  @ Override 
3030  public  void  addSnippetsSupportingFiles (List <SupportingFile > supportingFiles ) {
31+     supportingFiles .add (new  SupportingFile ("snippets/src.csproj.mustache" , "snippets/csharp/src/src.csproj" ));
3132    supportingFiles .add (new  SupportingFile ("snippets/.gitignore.mustache" , "snippets/csharp/.gitignore" ));
3233    supportingFiles .add (new  SupportingFile ("snippets/Algolia.mustache" , "snippets/csharp/Algolia.sln" ));
3334    supportingFiles .add (new  SupportingFile ("snippets/dotnet-tools.mustache" , "snippets/csharp/.config/dotnet-tools.json" ));
Original file line number Diff line number Diff line change 1+ <Project  Sdk =" Microsoft.NET.Sdk"  >
2+ 
3+     <PropertyGroup >
4+         <OutputType >Exe</OutputType >
5+         <TargetFramework >net8.0</TargetFramework >
6+         <ImplicitUsings >enable</ImplicitUsings >
7+         <Nullable >enable</Nullable >
8+         <RootNamespace >Algolia</RootNamespace >
9+         <LangVersion >12</LangVersion >
10+     </PropertyGroup >
11+ 
12+     <ItemGroup >
13+       <ProjectReference  Include =" ..\..\..\clients\algoliasearch-client-csharp\algoliasearch\Algolia.Search.csproj"   />
14+     </ItemGroup >
15+ 
16+     <ItemGroup >
17+       <PackageReference  Include =" Microsoft.Extensions.Configuration"   Version =" 8.0.0"   />
18+       <PackageReference  Include =" Microsoft.Extensions.Hosting"   Version =" 8.0.0"   />
19+     </ItemGroup >
20+ 
21+     <ItemGroup >
22+       <None  Update =" appsettings.json"  >
23+         <CopyToOutputDirectory >PreserveNewest</CopyToOutputDirectory >
24+       </None >
25+     </ItemGroup >
26+ 
27+ </Project >
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments