-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from t1agob/sourcegenerators
Added support for Source Generators (static)
- Loading branch information
Showing
214 changed files
with
10,627 additions
and
410 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation"> | ||
<s:Boolean x:Key="/Default/UnloadedProject/UnloadedProjects/=4de85b22_002D6f9f_002D4d4b_002Db176_002D38eb1168d2d1_0023AWS_002ELambda_002EPowerTools_002EGenerators/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary> |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>netcoreapp3.1</TargetFramework> | ||
<LangVersion>latest</LangVersion> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\libraries\src\AWS.Lambda.PowerTools.Metrics\AWS.Lambda.PowerTools.Metrics.csproj" /> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using System; | ||
using AWS.Lambda.PowerTools.Metrics; | ||
|
||
namespace ConsoleApp | ||
{ | ||
public partial class Products | ||
{ | ||
public string Name { get; set; } | ||
public int Amount { get; set; } | ||
|
||
internal void Output() | ||
{ | ||
Console.WriteLine("This is products"); | ||
|
||
} | ||
} | ||
|
||
|
||
} |
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
using System; | ||
using AWS.Lambda.PowerTools.Metrics; | ||
|
||
namespace ConsoleApp | ||
{ | ||
partial class Program | ||
{ | ||
static void Main(string[] args) | ||
{ | ||
Products p = new Products() | ||
{ | ||
Name = "p1", | ||
Amount = 10 | ||
}; | ||
|
||
p.Output(); | ||
|
||
} | ||
} | ||
} |
Binary file added
BIN
+19 KB
examples/ConsoleApp/bin/Debug/netcoreapp3.1/AWS.Lambda.PowerTools.Metrics.dll
Binary file not shown.
Binary file added
BIN
+16.2 KB
examples/ConsoleApp/bin/Debug/netcoreapp3.1/AWS.Lambda.PowerTools.Metrics.pdb
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+9.61 KB
examples/ConsoleApp/bin/Debug/netcoreapp3.1/AWS.Lambda.PowerTools.pdb
Binary file not shown.
Oops, something went wrong.