Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make emit calls useable from ekonbenefits/dynamitey #54

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ImpromptuInterface/ImpromptuInterface.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</PropertyGroup>
<Import Project="..\Version.props" />
<ItemGroup>
<PackageReference Include="Dynamitey" Version="3.0.2" />
<PackageReference Include="Dynamitey" Version="3.0.3" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)'=='net40'">
<Reference Include="Microsoft.CSharp" />
Expand Down
2 changes: 1 addition & 1 deletion ImpromptuInterface/src/EmitProxy/BuildProxy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ internal static class CompatHelper
///</summary>
public static class BuildProxy
{
public static readonly ActLikeMaker DefaultProxyMaker = new ActLikeMaker();
public static ActLikeMaker DefaultProxyMaker { get; } = new ActLikeMaker();

public static ActLikeMaker CollectableProxyMaker() => new ActLikeMaker(AssemblyBuilderAccess.RunAndCollect);

Expand Down
2 changes: 1 addition & 1 deletion Version.props
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Project>
<PropertyGroup>
<VersionPrefix>8.0.3</VersionPrefix>
<VersionPrefix>8.0.4</VersionPrefix>
</PropertyGroup>
</Project>
Loading