-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b6a59b5
commit 20cee43
Showing
41 changed files
with
118 additions
and
137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
50 changes: 24 additions & 26 deletions
50
Generators/SuperLinq.Async.Generator/SuperLinq.Async.Generator.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,42 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.0</TargetFrameworks> | ||
<IncludeBuildOutput>false</IncludeBuildOutput> | ||
<IsPackable>false</IsPackable> | ||
<IsRoslynComponent>true</IsRoslynComponent> | ||
<TargetFrameworks>netstandard2.0</TargetFrameworks> | ||
<IncludeBuildOutput>false</IncludeBuildOutput> | ||
<IsPackable>false</IsPackable> | ||
<IsRoslynComponent>true</IsRoslynComponent> | ||
|
||
<!-- Avoid figuring out an actual dependency on Scriban --> | ||
<PackageScribanIncludeSource>true</PackageScribanIncludeSource> | ||
<!-- Analyzer checks--> | ||
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules> | ||
|
||
<!-- Scriban fails a lot of things in latest-all... --> | ||
<AnalysisLevel>latest-default</AnalysisLevel> | ||
|
||
<!-- Analyzer checks--> | ||
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules> | ||
|
||
<!-- Other things to turn off --> | ||
<NoWarn>$(NoWarn);RS1035;SL03</NoWarn> | ||
<!-- Other things to turn off --> | ||
<NoWarn>$(NoWarn);RS1035</NoWarn> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" PrivateAssets="all" /> | ||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" PrivateAssets="all" /> | ||
<PackageReference Include="Scriban" IncludeAssets="build" /> | ||
<PackageReference Include="ThisAssembly.Resources" PrivateAssets="all" /> | ||
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" PrivateAssets="all" /> | ||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" PrivateAssets="all" /> | ||
<PackageReference Include="Scriban" PrivateAssets="all" GeneratePathProperty="true" /> | ||
<PackageReference Include="ThisAssembly.Resources" PrivateAssets="all" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Remove="*.sbntxt" /> | ||
<EmbeddedResource Include="*.sbntxt" Kind="Text" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<GetTargetPathDependsOn>$(GetTargetPathDependsOn);GetDependencyTargetPaths</GetTargetPathDependsOn> | ||
</PropertyGroup> | ||
|
||
<Target Name="GetDependencyTargetPaths"> | ||
<ItemGroup> | ||
<TargetPathWithTargetPlatformMoniker Include="$(PkgScriban)/lib/netstandard2.0/Scriban.dll" IncludeRuntimeDependency="false" /> | ||
</ItemGroup> | ||
</Target> | ||
|
||
<ItemGroup> | ||
<Compile Include="../SuperLinq.Generator/ArgumentNames.cs" /> | ||
<None Remove="*.sbntxt" /> | ||
<EmbeddedResource Include="*.sbntxt" Kind="Text" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<EmbeddedResource Update="ZipLongest.sbntxt"> | ||
<Kind>Text</Kind> | ||
</EmbeddedResource> | ||
<Compile Include="../SuperLinq.Generator/ArgumentNames.cs" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
44 changes: 24 additions & 20 deletions
44
Generators/SuperLinq.Generator/SuperLinq.Generator.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,38 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.0</TargetFrameworks> | ||
<IncludeBuildOutput>false</IncludeBuildOutput> | ||
<IsPackable>false</IsPackable> | ||
<IsRoslynComponent>true</IsRoslynComponent> | ||
<TargetFrameworks>netstandard2.0</TargetFrameworks> | ||
<IncludeBuildOutput>false</IncludeBuildOutput> | ||
<IsPackable>false</IsPackable> | ||
<IsRoslynComponent>true</IsRoslynComponent> | ||
|
||
<!-- Avoid figuring out an actual dependency on Scriban --> | ||
<PackageScribanIncludeSource>true</PackageScribanIncludeSource> | ||
<!-- Analyzer checks--> | ||
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules> | ||
|
||
<!-- Scriban fails a lot of things in latest-all... --> | ||
<AnalysisLevel>latest-default</AnalysisLevel> | ||
|
||
<!-- Analyzer checks--> | ||
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules> | ||
|
||
<!-- Other things to turn off --> | ||
<NoWarn>$(NoWarn);RS1035;SL03</NoWarn> | ||
<!-- Other things to turn off --> | ||
<NoWarn>$(NoWarn);RS1035</NoWarn> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" PrivateAssets="all" /> | ||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" PrivateAssets="all" /> | ||
<PackageReference Include="Scriban" IncludeAssets="build" /> | ||
<PackageReference Include="ThisAssembly.Resources" PrivateAssets="all" /> | ||
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" PrivateAssets="all" /> | ||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" PrivateAssets="all" /> | ||
<PackageReference Include="Scriban" PrivateAssets="all" GeneratePathProperty="true" /> | ||
<PackageReference Include="ThisAssembly.Resources" PrivateAssets="all" /> | ||
</ItemGroup> | ||
|
||
<PropertyGroup> | ||
<GetTargetPathDependsOn>$(GetTargetPathDependsOn);GetDependencyTargetPaths</GetTargetPathDependsOn> | ||
</PropertyGroup> | ||
|
||
<Target Name="GetDependencyTargetPaths"> | ||
<ItemGroup> | ||
<TargetPathWithTargetPlatformMoniker Include="$(PkgScriban)/lib/netstandard2.0/Scriban.dll" IncludeRuntimeDependency="false" /> | ||
</ItemGroup> | ||
</Target> | ||
|
||
<ItemGroup> | ||
<None Remove="*.sbntxt" /> | ||
<EmbeddedResource Include="*.sbntxt" Kind="Text" /> | ||
<None Remove="*.sbntxt" /> | ||
<EmbeddedResource Include="*.sbntxt" Kind="Text" /> | ||
</ItemGroup> | ||
|
||
</Project> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.